Closed mangrovestudios closed 4 years ago
I have Laravel 5.8 and after a recent composer update, I find myself seeing this deprecation warning:
composer update
PHP Deprecated: The "Doctrine/Common/Inflector/Inflector::pluralize" method is deprecated and will be dropped in doctrine/inflector 2.0.
In web tinker, this results in an inability to produce output for Laravel-related code, e.g.:
echo 'hello'; Model::find(1);
returns
hello [deprecation warnings..]
In artisan tinker, the above shows the output for Model::find(1) in addition to the warnings.
artisan tinker
Model::find(1)
Same issue #56
Found any solution for this?
I have Laravel 5.8 and after a recent
composer update
, I find myself seeing this deprecation warning:PHP Deprecated: The "Doctrine/Common/Inflector/Inflector::pluralize" method is deprecated and will be dropped in doctrine/inflector 2.0.
In web tinker, this results in an inability to produce output for Laravel-related code, e.g.:
returns
In
artisan tinker
, the above shows the output forModel::find(1)
in addition to the warnings.