Fatal Error - Too many open files

前端 未结 8 1472
暖寄归人
暖寄归人 2020-12-08 02:22

I try to run PHPUnit Tests in my new machine and I get this error:

PHP Fatal error: Uncaught exception \'UnexpectedValueException\' with message \'Re

8条回答
  •  时光说笑
    2020-12-08 03:17

    I've noticed this occur in PHP when you forget to wrap something in a closure. Carefully look at your recent diffs and you might be able to get to the bottom of this (in my case, I referenced $faker in a Laravel PHP unit factory without having a closure.

提交回复
热议问题