mirror of
https://github.com/composer/composer
synced 2025-05-09 08:32:56 +00:00
fixed cs
This commit is contained in:
parent
741a66e504
commit
3d56a5645e
1 changed files with 3 additions and 3 deletions
|
@ -94,9 +94,9 @@ EOT
|
||||||
*/
|
*/
|
||||||
private function isUnmatchedPackage(PackageInterface $package, $token)
|
private function isUnmatchedPackage(PackageInterface $package, $token)
|
||||||
{
|
{
|
||||||
return (false === strpos($package->getName(), $token)) &&
|
return (false === strpos($package->getName(), $token))
|
||||||
(false === strpos(join(',',$package->getKeywords() ?: array()), $token)) &&
|
&& (false === strpos(join(',',$package->getKeywords() ?: array()), $token))
|
||||||
(false === strpos($package->getDescription(), $token))
|
&& (false === strpos($package->getDescription(), $token))
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue