mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 09:31:51 +01:00
Fix coding standard (no_blank_lines_after_phpdoc, single_blank_line_before_namespace, yoda_style)
This commit is contained in:
@@ -59,7 +59,7 @@ class Composer
|
||||
* Unknown data from the composer.json file or there is no node with given name?
|
||||
* Nothing to do
|
||||
*/
|
||||
if ($data === null || !isset($data->{$nodeName})) {
|
||||
if (null === $data || !isset($data->{$nodeName})) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user