-
Notifications
You must be signed in to change notification settings - Fork 148
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
Use Github actions with style #233
Conversation
tests/ProjectCodeTest.php
Outdated
if (!$correct) { | ||
$correct = in_array($fullMethodName, self::$mixinMethodNames, true); | ||
} | ||
|
||
if ($correct === false) { | ||
if (false === $correct) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Free to ignore: not really a fan of yoda conditionals, i'd prefer to skip that rule.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can see their value, but Im not in love with them.
This is reverted.
Thank you for the review |
* Update style * Update CI rules * Normalize composer.json * Disable yoda * Apply CS fixes
No description provided.