for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @file
*/
namespace CultuurNet\UDB3\Cdb\Event;
use CultureFeed_Cdb_Item_Event;
class Not implements SpecificationInterface
{
* @var SpecificationInterface
private $spec;
public function __construct(SpecificationInterface $spec)
$this->spec = $spec;
}
* @inheritdoc
public function isSatisfiedByEvent(CultureFeed_Cdb_Item_Event $event)
return !$this->spec->isSatisfiedByEvent($event);