Neos\Flow\Persistence\Doctrine\Repository::findByIdentifier PHP 메소드

findByIdentifier() 공개 메소드

Finds an object matching the given identifier.
public findByIdentifier ( mixed $identifier ) : object
$identifier mixed The identifier of the object to find
리턴 object The matching object if found, otherwise NULL
    public function findByIdentifier($identifier)
    {
        return $this->entityManager->find($this->objectType, $identifier);
    }