Use of undefined constant STDIN - assumed 'STDIN
thewebartisan7 opened this issue · 2 comments
thewebartisan7 commented
I see there is already an issue about this here #54
And seem already an old issue, see laravel/framework#4721
When running artisan via console, STDIN is already defined, but not when running via controller like generator-builder.
Defining STDIN fix issue, example:
if(! defined('STDIN')) define('STDIN', fopen("php://stdin","r"));
rabol commented
Will there be a fix for this ?
thewebartisan7 commented
Hi rabol, it's fixed in Laraloop custom fork. Do you experience this with Laraloop?