findAll() публичный Метод

Returns all objects of this repository
См. также: QueryInterface::execute()
public findAll ( ) : Neos\Flow\Persistence\QueryResultInterface
Результат Neos\Flow\Persistence\QueryResultInterface The query result
 public function findAll()
 {
     $result = parent::findAll();
     foreach ($result as $instance) {
         $instance->setContent($instance->getContent() . ' - touched by SubSubEntityRepository');
     }
     return $result;
 }