Neos\Flow\Persistence\Repository::findByIdentifier PHP Метод

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

Finds an object matching the given identifier.
public findByIdentifier ( string $identifier ) : object
$identifier string The identifier of the object to find
Результат object The matching object if found, otherwise NULL
    public function findByIdentifier($identifier)
    {
        return $this->persistenceManager->getObjectByIdentifier($identifier, $this->entityClassName);
    }