Skip to content

Commit

Permalink
Update library/Zend/Cache/Storage/Plugin/ClearExpiredByFactor.php
Browse files Browse the repository at this point in the history
Removed strict check to just make it PRS-2 compliant
  • Loading branch information
RWOverdijk committed Aug 10, 2012
1 parent bcecc58 commit b4e3026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Cache/Storage/Plugin/ClearExpiredByFactor.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public function detach(EventManagerInterface $events)
public function clearExpiredByFactor(PostEvent $event)
{
$storage = $event->getStorage();
if (($storage instanceof ClearExpiredInterface) !== true) {
if (!($storage instanceof ClearExpiredInterface)) {
return;
}

Expand Down

0 comments on commit b4e3026

Please sign in to comment.