Brotzka / laravel-dotenv-editor

A Laravel package for editing the .env file dynamically.
366 stars 80 forks source link

Need Changes to str_finish to Str::finish in Laravel 6 #66

Open narai420 opened 4 years ago

narai420 commented 4 years ago

https://github.com/Brotzka/laravel-dotenv-editor/blob/f84fbabef07c34a92af0f32e38a84e9ced087e64/src/DotenvEditor.php#L33

tomcrofty commented 4 years ago

A bit of digging found out that Laravel 6 removed the str_finish function. Either an alternative function could be used or you can install the Laravel helpers package which fixed it for me.

composer require laravel/helpers

narai420 commented 4 years ago

Actually we need to use Str::finish in lieu of str_finish helper in Laravel 6 and 7

AlvinQinwen commented 4 years ago

str_finish is undefined we need to use Str::finish to replace this function