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);
    }