Apply fixes from StyleCI #988
Annotations
1 error and 1 warning
mutation / PHP 8.3-ubuntu-latest
Process completed with exit code 1.
|
mutation / PHP 8.3-ubuntu-latest:
src/Manager.php#L129
Escaped Mutant for Mutator "ArrayOneItem":
--- Original
+++ New
@@ @@
$userItemNames[] = $roleName;
}
}
- return $userItemNames;
+ return count($userItemNames) > 1 ? array_slice($userItemNames, 0, 1, true) : $userItemNames;
}
public function canAddChild(string $parentName, string $childName) : bool
{
|