You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The AbstractCommand::execute() method should return an integer, or null.
Although in PHP, omitting the return statement is equivalent to returning null, it is recommended to put an explicit return to clearly differentiate it from return void.
I've added return 0; here, keeping the existent behavior.
The text was updated successfully, but these errors were encountered:
Jira issue originally created by user @beberlei:
This issue is created automatically through a Github pull request on behalf of BenMorel:
Url: #566
Message:
The
AbstractCommand::execute()
method should return aninteger
, ornull
.Although in PHP, omitting the
return
statement is equivalent to returningnull
, it is recommended to put an explicitreturn
to clearly differentiate it fromreturn void
.I've added
return 0;
here, keeping the existent behavior.The text was updated successfully, but these errors were encountered: