Lines Matching full:entity
92 * Try to load the entity file for a given entity name.
94 * @param string $entity Entity name to load.
97 public function load($entity) argument
99 $entityPrefix = $entity;
103 $currentEntityPrefix = substr($entity, 0, $pos + 1);
105 $entitySuffix = substr($entity, $pos + 1);
124 $entity === Consistency::getEntityShortestName($entity) &&
125 false !== $pos = strrpos($entity, '\\')) {
127 $entity . '\\' . substr($entity, $pos + 1)
188 * Run the entire autoloader stack with a specific entity.
190 * @param string $entity Entity name to load.
193 public function runAutoloaderStack($entity) argument
195 return spl_autoload_call($entity);