Method |
Description |
|
__call ( string $name, array $args ) : mixed |
Call to undefined method. |
|
__callStatic ( string $name, array $args ) : mixed |
Call to undefined static method. |
|
__get ( string $name ) : mixed |
Returns property value. Do not call directly. |
|
__isset ( string $name ) : boolean |
Is property defined? |
|
__set ( string $name, mixed $value ) : void |
Sets value of a property. Do not call directly. |
|
__unset ( string $name ) : void |
Access to undeclared property. |
|
bindTracyPanel ( Kdyby\Doctrine\Diagnostics\Panel $panel ) |
|
|
clear ( $entityName = null ) : EntityManager |
|
|
close ( ) |
|
|
create ( Doctrine\DBAL\Connection | array $conn, Doctrine\ORM\Configuration $config, Doctrine\Common\EventManager $eventManager = NULL ) : EntityManager |
Factory method to create EntityManager instances. |
|
createQueryBuilder ( $alias = NULL, $indexBy = NULL ) : Kdyby\Doctrine\QueryBuilder |
|
|
extensionMethod ( $name, null $callback = NULL ) : callable | null |
Adding method to class. |
|
fetch ( Kdyby\Persistence\Query $queryObject, integer $hydrationMode = AbstractQuery::HYDRATE_OBJECT ) : array | ResultSet |
|
|
fetchOne ( Kdyby\Persistence\Query $queryObject ) : object | null |
|
|
flush ( object | array $entity = null ) : EntityManager |
|
|
getReflection ( ) : ClassType |
Access to reflection. |
|
newHydrator ( integer $hydrationMode ) : Doctrine\ORM\Internal\Hydration\AbstractHydrator |
|
|
persist ( object | array $entity ) : EntityManager |
|
|
remove ( object | array $entity ) : EntityManager |
|
|
safePersist ( $entity ) : boolean | object |
Tries to persist the given entity and returns FALSE if an unique
constaint was violated. |
|