1
0
Fork 0
pull/435/head
digitalkaoz 2012-03-10 22:32:06 +01:00
parent 741a66e504
commit 3d56a5645e
1 changed files with 3 additions and 3 deletions

View File

@ -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))
; ;
} }
} }