Nullable类型抛出错误“必须是异常的实例”

时间:2018-01-26 16:58:42

标签: php laravel

?string类型添加到函数参数后,它会抛出错误。

错误:

  

类型错误:参数1传递给   Whoops \ Exception \ Inspector :: __ construct()必须是。的实例   异常,给出的ParseError实例,调用   /var/www/website/vendor/filp/whoops/src/Whoops/Exception/Inspector.php   在第80行

代码:

public function getPayments(?string $searchKey = '', $searchByColumn = "id")
{
     return $this->model->where($searchByColumn, '=', $searchKey)->get();
}

我正在使用带有php7的laravel4。我该怎么办呢?

0 个答案:

没有答案