エラー
Uncaught Error: Call to a member function get() on null__clone method called on non-object {””, "exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalThrowableError(code: 0): __clone method called on non-object at /var/www/local/vendor/symfony/http-foundation/Request.php:512)
原因
原因は自作FormRequestの中で定義したconstructorの継承忘れミス。
祖先のvendor/symfony/http-foundation/Requestのcloneで引っ掛かっていた。
メンバ変数が定義できていなかったから?なぜcloneが呼び出されたのかわからないが、
エラーと原因が結び付かずはまった。
public function __clone()
{
$this->query = clone $this->query;
$this->request = clone $this->request;
$this->attributes = clone $this->attributes;
$this->cookies = clone $this->cookies;
$this->files = clone $this->files;
$this->server = clone $this->server;
$this->headers = clone $this->headers;
}