Neos\Flow\Tests\Functional\Persistence\Fixtures\SubSubEntityRepository::findAll PHP Method

findAll() public method

public findAll ( )
    public function findAll()
    {
        $result = parent::findAll();
        foreach ($result as $instance) {
            $instance->setContent($instance->getContent() . ' - touched by SubSubEntityRepository');
        }
        return $result;
    }
SubSubEntityRepository