Example #1
0
 public function isSatisfiedBy(SpecificationAwareInterface $entity)
 {
     if (empty($entity->getId())) {
         return false;
     }
     return !empty($this->getRepository()->findById($entity));
 }