findAll() public method

Returns all objects of this repository
See also: QueryInterface::execute()
public findAll ( ) : Neos\Flow\Persistence\QueryResultInterface
return 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;
 }