-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got error when running all "php artisan" commands #107
Comments
it seems that the error can be fixed by changing this file (around Line 111) - but I'm not sure if this will break something else or if it's a good solution, but it seems to be a workaround
FROM
TO
|
Need to use php7.1 like in docker
…On Wed, Nov 16, 2022, 19:47 KeldNielsen86 ***@***.***> wrote:
***@***.***:/path/to/project/gitpab# php artisan key:generate
In FindCommand.php line 113:
Unparenthesized a ? b : c ? d : e is deprecated. Use either (a ? b : c) ?
d : e or a ? b : (c ? d : e)
***@***.***:/path/to/project/gitpab# php artisan migrate
In FindCommand.php line 113:
Unparenthesized a ? b : c ? d : e is deprecated. Use either (a ? b : c) ?
d : e or a ? b : (c ? d : e)
***@***.***:/path/to/project/gitpab# php artisan db:seed
In FindCommand.php line 113:
Unparenthesized a ? b : c ? d : e is deprecated. Use either (a ? b : c) ?
d : e or a ? b : (c ? d : e)
***@***.***:/path/to/project/gitpab# php artisan make:user
In FindCommand.php line 113:
Unparenthesized a ? b : c ? d : e is deprecated. Use either (a ? b : c) ?
d : e or a ? b : (c ? d : e)
—
Reply to this email directly, view it on GitHub
<#107>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAGKTOBAZQIEPVZX4J5XHPDWIUFZDANCNFSM6AAAAAASCOBSBI>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Update to actual php version requires to update Laravel, I plan to do it
much later
…On Wed, Nov 16, 2022, 19:47 KeldNielsen86 ***@***.***> wrote:
***@***.***:/path/to/project/gitpab# php artisan key:generate
In FindCommand.php line 113:
Unparenthesized a ? b : c ? d : e is deprecated. Use either (a ? b : c) ?
d : e or a ? b : (c ? d : e)
***@***.***:/path/to/project/gitpab# php artisan migrate
In FindCommand.php line 113:
Unparenthesized a ? b : c ? d : e is deprecated. Use either (a ? b : c) ?
d : e or a ? b : (c ? d : e)
***@***.***:/path/to/project/gitpab# php artisan db:seed
In FindCommand.php line 113:
Unparenthesized a ? b : c ? d : e is deprecated. Use either (a ? b : c) ?
d : e or a ? b : (c ? d : e)
***@***.***:/path/to/project/gitpab# php artisan make:user
In FindCommand.php line 113:
Unparenthesized a ? b : c ? d : e is deprecated. Use either (a ? b : c) ?
d : e or a ? b : (c ? d : e)
—
Reply to this email directly, view it on GitHub
<#107>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAGKTOBAZQIEPVZX4J5XHPDWIUFZDANCNFSM6AAAAAASCOBSBI>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
ahh okay, I am using php 7.4 . :) |
the workaround works for me, so I managed to install gitpab successfully |
root@server:/path/to/project/gitpab# php artisan key:generate
root@server:/path/to/project/gitpab# php artisan migrate
root@server:/path/to/project/gitpab# php artisan db:seed
root@server:/path/to/project/gitpab# php artisan make:user
The text was updated successfully, but these errors were encountered: