Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

21 lines
405B

  1. <?php
  2. namespace Lc\SovBundle\Component;
  3. use Cocur\Slugify\Slugify;
  4. class ArrayComponent
  5. {
  6. public function contains(array $array, $entity): bool
  7. {
  8. foreach($array as $entityTest) {
  9. if(get_class($entityTest) == get_class($entity)
  10. && $entityTest->getId() == $entity->getId()) {
  11. return true;
  12. }
  13. }
  14. return false;
  15. }
  16. }