@@ -1,8 +1,8 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * @link https://github.com/nnx-framework/doctrine |
|
| 4 | - * @author Malofeykin Andrey <[email protected]> |
|
| 5 | - */ |
|
| 3 | + * @link https://github.com/nnx-framework/doctrine |
|
| 4 | + * @author Malofeykin Andrey <[email protected]> |
|
| 5 | + */ |
|
| 6 | 6 | namespace Nnx\Doctrine; |
| 7 | 7 | |
| 8 | 8 | use Nnx\Doctrine\ObjectManager\DoctrineObjectManager; |
@@ -1,8 +1,8 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * @link https://github.com/nnx-framework/doctrine |
|
| 4 | - * @author Malofeykin Andrey <[email protected]> |
|
| 5 | - */ |
|
| 3 | + * @link https://github.com/nnx-framework/doctrine |
|
| 4 | + * @author Malofeykin Andrey <[email protected]> |
|
| 5 | + */ |
|
| 6 | 6 | namespace Nnx\Doctrine; |
| 7 | 7 | |
| 8 | 8 | use Nnx\Doctrine\ObjectManager\DoctrineObjectManager; |
@@ -1,8 +1,8 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * @link https://github.com/nnx-framework/doctrine |
|
| 4 | - * @author Malofeykin Andrey <[email protected]> |
|
| 5 | - */ |
|
| 3 | + * @link https://github.com/nnx-framework/doctrine |
|
| 4 | + * @author Malofeykin Andrey <[email protected]> |
|
| 5 | + */ |
|
| 6 | 6 | namespace Nnx\Doctrine; |
| 7 | 7 | |
| 8 | 8 | use Nnx\Doctrine\ObjectManager\DoctrineObjectManager; |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | * |
| 27 | 27 | * @var array |
| 28 | 28 | */ |
| 29 | - protected $prototype = []; |
|
| 29 | + protected $prototype = [ ]; |
|
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | 32 | * Флаг определяет была ли инициированна фабрика |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | * |
| 48 | 48 | * @var array |
| 49 | 49 | */ |
| 50 | - protected $objectManagerToEntityMap = []; |
|
| 50 | + protected $objectManagerToEntityMap = [ ]; |
|
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | 53 | * Колличество ObjectManagers для которых есть EntityMap |
@@ -61,14 +61,14 @@ discard block |
||
| 61 | 61 | * |
| 62 | 62 | * @var array |
| 63 | 63 | */ |
| 64 | - protected $baseEntityMap = []; |
|
| 64 | + protected $baseEntityMap = [ ]; |
|
| 65 | 65 | |
| 66 | 66 | /** |
| 67 | 67 | * Ключем является имя интерфейса, а значением имя класса сущности |
| 68 | 68 | * |
| 69 | 69 | * @var array |
| 70 | 70 | */ |
| 71 | - protected $interfaceNameToClassName = []; |
|
| 71 | + protected $interfaceNameToClassName = [ ]; |
|
| 72 | 72 | |
| 73 | 73 | /** |
| 74 | 74 | * @inheritdoc |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | { |
| 86 | 86 | $this->init($serviceLocator); |
| 87 | 87 | if (array_key_exists($requestedName, $this->prototype)) { |
| 88 | - return false !== $this->prototype[$requestedName]; |
|
| 88 | + return false !== $this->prototype[ $requestedName ]; |
|
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | return false !== $this->getClassNameByInterface($requestedName); |
@@ -101,25 +101,25 @@ discard block |
||
| 101 | 101 | protected function getClassNameByInterface($interfaceName) |
| 102 | 102 | { |
| 103 | 103 | if (array_key_exists($interfaceName, $this->interfaceNameToClassName)) { |
| 104 | - return $this->interfaceNameToClassName[$interfaceName]; |
|
| 104 | + return $this->interfaceNameToClassName[ $interfaceName ]; |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | if (0 === $this->countObjectManagers) { |
| 108 | - $this->interfaceNameToClassName[$interfaceName] = false; |
|
| 108 | + $this->interfaceNameToClassName[ $interfaceName ] = false; |
|
| 109 | 109 | return false; |
| 110 | 110 | } elseif (1 === $this->countObjectManagers) { |
| 111 | - $this->interfaceNameToClassName[$interfaceName] = array_key_exists($interfaceName, $this->baseEntityMap) ? $this->baseEntityMap[$interfaceName] : false; |
|
| 112 | - return $this->interfaceNameToClassName[$interfaceName]; |
|
| 111 | + $this->interfaceNameToClassName[ $interfaceName ] = array_key_exists($interfaceName, $this->baseEntityMap) ? $this->baseEntityMap[ $interfaceName ] : false; |
|
| 112 | + return $this->interfaceNameToClassName[ $interfaceName ]; |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | foreach ($this->objectManagerToEntityMap as $entityMap) { |
| 116 | 116 | if (array_key_exists($interfaceName, $entityMap)) { |
| 117 | - $this->interfaceNameToClassName[$interfaceName] = $entityMap[$interfaceName]; |
|
| 118 | - return $this->interfaceNameToClassName[$interfaceName]; |
|
| 117 | + $this->interfaceNameToClassName[ $interfaceName ] = $entityMap[ $interfaceName ]; |
|
| 118 | + return $this->interfaceNameToClassName[ $interfaceName ]; |
|
| 119 | 119 | } |
| 120 | 120 | } |
| 121 | - $this->interfaceNameToClassName[$interfaceName] = false; |
|
| 122 | - return $this->interfaceNameToClassName[$interfaceName]; |
|
| 121 | + $this->interfaceNameToClassName[ $interfaceName ] = false; |
|
| 122 | + return $this->interfaceNameToClassName[ $interfaceName ]; |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | /** |
@@ -139,11 +139,11 @@ discard block |
||
| 139 | 139 | $this->init($serviceLocator); |
| 140 | 140 | |
| 141 | 141 | if (array_key_exists($requestedName, $this->prototype)) { |
| 142 | - if (!is_object($this->prototype[$requestedName])) { |
|
| 142 | + if (!is_object($this->prototype[ $requestedName ])) { |
|
| 143 | 143 | $errMsg = sprintf('Invalid prototype for %s', $requestedName); |
| 144 | 144 | throw new Exception\RuntimeException($errMsg); |
| 145 | 145 | } |
| 146 | - return clone $this->prototype[$requestedName]; |
|
| 146 | + return clone $this->prototype[ $requestedName ]; |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | $className = $this->getClassNameByInterface($requestedName); |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | $r = new ReflectionClass($className); |
| 159 | 159 | $entity = $r->newInstance(); |
| 160 | 160 | } |
| 161 | - $this->prototype[$requestedName] = $entity; |
|
| 161 | + $this->prototype[ $requestedName ] = $entity; |
|
| 162 | 162 | |
| 163 | 163 | return $entity; |
| 164 | 164 | } |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | $entityMapCache = $appServiceLocator->get(EntityMapCacheInterface::class); |
| 197 | 197 | foreach ($listObjectManagerName as $objectManagerName) { |
| 198 | 198 | if ($entityMapCache->hasEntityMap($objectManagerName)) { |
| 199 | - $this->objectManagerToEntityMap[$objectManagerName] = $entityMapCache->loadEntityMap($objectManagerName); |
|
| 199 | + $this->objectManagerToEntityMap[ $objectManagerName ] = $entityMapCache->loadEntityMap($objectManagerName); |
|
| 200 | 200 | } |
| 201 | 201 | } |
| 202 | 202 | |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | * |
| 137 | 137 | * @return string |
| 138 | 138 | */ |
| 139 | - public function getConsoleBanner(Console $console){ |
|
| 139 | + public function getConsoleBanner(Console $console) { |
|
| 140 | 140 | return 'Tools for entity map'; |
| 141 | 141 | } |
| 142 | 142 | |
@@ -147,13 +147,13 @@ discard block |
||
| 147 | 147 | * |
| 148 | 148 | * @return array |
| 149 | 149 | */ |
| 150 | - public function getConsoleUsage(Console $console){ |
|
| 150 | + public function getConsoleUsage(Console $console) { |
|
| 151 | 151 | return [ |
| 152 | 152 | 'Entity map builder', |
| 153 | 153 | 'entity-map build --objectManager=' => 'Generation entity maps and cached', |
| 154 | - ['--objectManager=MANAGER_NAME', 'ObjectManager name'], |
|
| 154 | + [ '--objectManager=MANAGER_NAME', 'ObjectManager name' ], |
|
| 155 | 155 | 'entity-map clear --objectManager=' => 'Clear entity maps from cached', |
| 156 | - ['--objectManager=MANAGER_NAME', 'ObjectManager name'], |
|
| 156 | + [ '--objectManager=MANAGER_NAME', 'ObjectManager name' ], |
|
| 157 | 157 | ]; |
| 158 | 158 | } |
| 159 | 159 | } |
| 160 | 160 | \ No newline at end of file |
@@ -1,8 +1,8 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * @link https://github.com/nnx-framework/doctrine |
|
| 4 | - * @author Malofeykin Andrey <[email protected]> |
|
| 5 | - */ |
|
| 3 | + * @link https://github.com/nnx-framework/doctrine |
|
| 4 | + * @author Malofeykin Andrey <[email protected]> |
|
| 5 | + */ |
|
| 6 | 6 | namespace Nnx\Doctrine; |
| 7 | 7 | |
| 8 | 8 | use Nnx\Doctrine\ObjectManager\DoctrineObjectManager; |
@@ -1,8 +1,8 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * @link https://github.com/nnx-framework/doctrine |
|
| 4 | - * @author Malofeykin Andrey <[email protected]> |
|
| 5 | - */ |
|
| 3 | + * @link https://github.com/nnx-framework/doctrine |
|
| 4 | + * @author Malofeykin Andrey <[email protected]> |
|
| 5 | + */ |
|
| 6 | 6 | namespace Nnx\Doctrine; |
| 7 | 7 | |
| 8 | 8 | use Nnx\Doctrine\ObjectManager\DoctrineObjectManager; |
@@ -1,8 +1,8 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * @link https://github.com/nnx-framework/doctrine |
|
| 4 | - * @author Malofeykin Andrey <[email protected]> |
|
| 5 | - */ |
|
| 3 | + * @link https://github.com/nnx-framework/doctrine |
|
| 4 | + * @author Malofeykin Andrey <[email protected]> |
|
| 5 | + */ |
|
| 6 | 6 | namespace Nnx\Doctrine; |
| 7 | 7 | |
| 8 | 8 | use Nnx\Doctrine\ObjectManager\DoctrineObjectManager; |
@@ -1,8 +1,8 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * @link https://github.com/nnx-framework/doctrine |
|
| 4 | - * @author Malofeykin Andrey <[email protected]> |
|
| 5 | - */ |
|
| 3 | + * @link https://github.com/nnx-framework/doctrine |
|
| 4 | + * @author Malofeykin Andrey <[email protected]> |
|
| 5 | + */ |
|
| 6 | 6 | namespace Nnx\Doctrine; |
| 7 | 7 | |
| 8 | 8 | use Nnx\Doctrine\ObjectManager\DoctrineObjectManager; |
@@ -1,8 +1,8 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * @link https://github.com/nnx-framework/doctrine |
|
| 4 | - * @author Malofeykin Andrey <[email protected]> |
|
| 5 | - */ |
|
| 3 | + * @link https://github.com/nnx-framework/doctrine |
|
| 4 | + * @author Malofeykin Andrey <[email protected]> |
|
| 5 | + */ |
|
| 6 | 6 | namespace Nnx\Doctrine; |
| 7 | 7 | |
| 8 | 8 | use Nnx\Doctrine\ObjectManager\DoctrineObjectManager; |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | * |
| 25 | 25 | * @var array |
| 26 | 26 | */ |
| 27 | - protected $prototype = []; |
|
| 27 | + protected $prototype = [ ]; |
|
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | 30 | * Кеш ключем которого является имя класса гидратора, а значением true/false. Т.е. является ли класс корректным потомком |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | * |
| 33 | 33 | * @var array |
| 34 | 34 | */ |
| 35 | - protected $validDoctrineObjectHydratorClass = []; |
|
| 35 | + protected $validDoctrineObjectHydratorClass = [ ]; |
|
| 36 | 36 | |
| 37 | 37 | /** |
| 38 | 38 | * Сервис позволяющий получить ObjectManager по имени класса |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | * |
| 54 | 54 | * @var array |
| 55 | 55 | */ |
| 56 | - protected $reflectionClassCache = []; |
|
| 56 | + protected $reflectionClassCache = [ ]; |
|
| 57 | 57 | |
| 58 | 58 | /** |
| 59 | 59 | * DoctrineObjectHydratorLocator constructor. |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | throw new Exception\NotFoundDoctrineObjectHydratorException($errMsg); |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - return clone $this->prototype[$id]; |
|
| 84 | + return clone $this->prototype[ $id ]; |
|
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | /** |
@@ -94,12 +94,12 @@ discard block |
||
| 94 | 94 | public function has($id) |
| 95 | 95 | { |
| 96 | 96 | if (array_key_exists($id, $this->prototype)) { |
| 97 | - return false !== $this->prototype[$id]; |
|
| 97 | + return false !== $this->prototype[ $id ]; |
|
| 98 | 98 | } |
| 99 | 99 | |
| 100 | - $this->prototype[$id] = $this->buildDoctrineObjectHydratorPrototype($id); |
|
| 100 | + $this->prototype[ $id ] = $this->buildDoctrineObjectHydratorPrototype($id); |
|
| 101 | 101 | |
| 102 | - return false !== $this->prototype[$id]; |
|
| 102 | + return false !== $this->prototype[ $id ]; |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | /** |
@@ -112,18 +112,18 @@ discard block |
||
| 112 | 112 | protected function buildDoctrineObjectHydratorPrototype($hydratorName) |
| 113 | 113 | { |
| 114 | 114 | if (!class_exists($hydratorName)) { |
| 115 | - $this->prototype[$hydratorName] = false; |
|
| 115 | + $this->prototype[ $hydratorName ] = false; |
|
| 116 | 116 | return false; |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | if (!$this->isValidDoctrineObjectHydratorClass($hydratorName)) { |
| 120 | - $this->prototype[$hydratorName] = false; |
|
| 120 | + $this->prototype[ $hydratorName ] = false; |
|
| 121 | 121 | return false; |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | $objectManagerAutoDetector = $this->getObjectManagerAutoDetector(); |
| 125 | 125 | if (false === $objectManagerAutoDetector->hasObjectManagerNameByClassName($hydratorName)) { |
| 126 | - $this->prototype[$hydratorName] = false; |
|
| 126 | + $this->prototype[ $hydratorName ] = false; |
|
| 127 | 127 | return false; |
| 128 | 128 | } |
| 129 | 129 | |
@@ -132,19 +132,19 @@ discard block |
||
| 132 | 132 | $doctrineObjectManager = $this->getDoctrineObjectManager(); |
| 133 | 133 | |
| 134 | 134 | if (false === $doctrineObjectManager->has($objectManagerName)) { |
| 135 | - $this->prototype[$hydratorName] = false; |
|
| 135 | + $this->prototype[ $hydratorName ] = false; |
|
| 136 | 136 | return false; |
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | /** @var ObjectManager $objectManager */ |
| 140 | 140 | $objectManager = $doctrineObjectManager->get($objectManagerName); |
| 141 | 141 | |
| 142 | - $r = array_key_exists($hydratorName, $this->reflectionClassCache) ? $this->reflectionClassCache[$hydratorName] : new ReflectionClass($hydratorName); |
|
| 142 | + $r = array_key_exists($hydratorName, $this->reflectionClassCache) ? $this->reflectionClassCache[ $hydratorName ] : new ReflectionClass($hydratorName); |
|
| 143 | 143 | |
| 144 | - $this->prototype[$hydratorName] = $r->newInstance($objectManager); |
|
| 144 | + $this->prototype[ $hydratorName ] = $r->newInstance($objectManager); |
|
| 145 | 145 | |
| 146 | 146 | |
| 147 | - return $this->prototype[$hydratorName]; |
|
| 147 | + return $this->prototype[ $hydratorName ]; |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | /** |
@@ -157,18 +157,18 @@ discard block |
||
| 157 | 157 | public function isValidDoctrineObjectHydratorClass($hydratorClass) |
| 158 | 158 | { |
| 159 | 159 | if (array_key_exists($hydratorClass, $this->validDoctrineObjectHydratorClass)) { |
| 160 | - return $this->validDoctrineObjectHydratorClass[$hydratorClass]; |
|
| 160 | + return $this->validDoctrineObjectHydratorClass[ $hydratorClass ]; |
|
| 161 | 161 | } |
| 162 | 162 | |
| 163 | - $r = array_key_exists($hydratorClass, $this->reflectionClassCache) ? $this->reflectionClassCache[$hydratorClass] : new ReflectionClass($hydratorClass); |
|
| 163 | + $r = array_key_exists($hydratorClass, $this->reflectionClassCache) ? $this->reflectionClassCache[ $hydratorClass ] : new ReflectionClass($hydratorClass); |
|
| 164 | 164 | |
| 165 | 165 | if (!$r->isInstantiable()) { |
| 166 | - $this->validDoctrineObjectHydratorClass[$hydratorClass] = false; |
|
| 166 | + $this->validDoctrineObjectHydratorClass[ $hydratorClass ] = false; |
|
| 167 | 167 | return false; |
| 168 | 168 | } |
| 169 | 169 | |
| 170 | 170 | if (!$r->isSubclassOf(DoctrineObject::class)) { |
| 171 | - $this->validDoctrineObjectHydratorClass[$hydratorClass] = false; |
|
| 171 | + $this->validDoctrineObjectHydratorClass[ $hydratorClass ] = false; |
|
| 172 | 172 | return false; |
| 173 | 173 | } |
| 174 | 174 | |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | } |
| 193 | 193 | |
| 194 | 194 | |
| 195 | - $this->validDoctrineObjectHydratorClass[$hydratorClass] = $isConstructorParamValid; |
|
| 195 | + $this->validDoctrineObjectHydratorClass[ $hydratorClass ] = $isConstructorParamValid; |
|
| 196 | 196 | |
| 197 | 197 | return true; |
| 198 | 198 | } |