Neos\Flow\Persistence\Repository::findByIdentifier PHP Method

findByIdentifier() public method

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