Open narai420 opened 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
Actually we need to use Str::finish in lieu of str_finish helper in Laravel 6 and 7
str_finish is undefined
we need to use Str::finish
to replace this function
https://github.com/Brotzka/laravel-dotenv-editor/blob/f84fbabef07c34a92af0f32e38a84e9ced087e64/src/DotenvEditor.php#L33