@@ -52,7 +52,7 @@ |
||
| 52 | 52 | protected $secondLevelCacheDriverImpl = null; |
| 53 | 53 | |
| 54 | 54 | /** |
| 55 | - * @param array $paths |
|
| 55 | + * @param string[] $paths |
|
| 56 | 56 | * @param mixed $alias |
| 57 | 57 | * |
| 58 | 58 | * @return \Doctrine\ORM\Mapping\Driver\AnnotationDriver |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | } |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - Annotations\AnnotationRegistry::registerFile(__DIR__ . "/../../../lib/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php"); |
|
| 99 | + Annotations\AnnotationRegistry::registerFile(__DIR__."/../../../lib/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php"); |
|
| 100 | 100 | |
| 101 | 101 | return new AnnotationDriver($reader, (array) $paths); |
| 102 | 102 | } |
@@ -127,11 +127,11 @@ discard block |
||
| 127 | 127 | $config->setMetadataCacheImpl($metadataCache); |
| 128 | 128 | $config->setMetadataDriverImpl($config->newDefaultAnnotationDriver([], true)); |
| 129 | 129 | $config->setQueryCacheImpl(self::getSharedQueryCacheImpl()); |
| 130 | - $config->setProxyDir(__DIR__ . '/Proxies'); |
|
| 130 | + $config->setProxyDir(__DIR__.'/Proxies'); |
|
| 131 | 131 | $config->setProxyNamespace('Doctrine\Tests\Proxies'); |
| 132 | 132 | $config->setMetadataDriverImpl($config->newDefaultAnnotationDriver( |
| 133 | 133 | [ |
| 134 | - realpath(__DIR__ . '/Models/Cache') |
|
| 134 | + realpath(__DIR__.'/Models/Cache') |
|
| 135 | 135 | ], true)); |
| 136 | 136 | |
| 137 | 137 | if ($this->isSecondLevelCacheEnabled) { |
@@ -83,6 +83,7 @@ |
||
| 83 | 83 | |
| 84 | 84 | /** |
| 85 | 85 | * {@inheritDoc} |
| 86 | + * @param string $value |
|
| 86 | 87 | */ |
| 87 | 88 | public function setValue($object, $value = null) |
| 88 | 89 | { |
@@ -182,7 +182,7 @@ discard block |
||
| 182 | 182 | |
| 183 | 183 | /** |
| 184 | 184 | * |
| 185 | - * @param kateglo\application\models\Type $type |
|
| 185 | + * @param Type $type |
|
| 186 | 186 | * @return void |
| 187 | 187 | */ |
| 188 | 188 | public function addType(Type $type){ |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | |
| 195 | 195 | /** |
| 196 | 196 | * |
| 197 | - * @param kateglo\application\models\Type $type |
|
| 197 | + * @param Type $type |
|
| 198 | 198 | * @return void |
| 199 | 199 | */ |
| 200 | 200 | public function removeType(Type $type) |
@@ -304,7 +304,7 @@ discard block |
||
| 304 | 304 | |
| 305 | 305 | /** |
| 306 | 306 | * |
| 307 | - * @param kateglo\application\models\Lemma $lemma |
|
| 307 | + * @param Lemma $lemma |
|
| 308 | 308 | * @return void |
| 309 | 309 | */ |
| 310 | 310 | public function addLemma(Lemma $lemma) |
@@ -317,7 +317,7 @@ discard block |
||
| 317 | 317 | |
| 318 | 318 | /** |
| 319 | 319 | * |
| 320 | - * @param kateglo\application\models\Lemma $lemma |
|
| 320 | + * @param Lemma $lemma |
|
| 321 | 321 | * @return void |
| 322 | 322 | */ |
| 323 | 323 | public function removeLEmma(Lemma $lemma) |
@@ -131,65 +131,65 @@ discard block |
||
| 131 | 131 | */ |
| 132 | 132 | class Lemma { |
| 133 | 133 | |
| 134 | - const CLASS_NAME = __CLASS__; |
|
| 135 | - |
|
| 136 | - /** |
|
| 137 | - * @var int |
|
| 138 | - * @Id |
|
| 139 | - * @Column(type="integer", name="lemma_id") |
|
| 140 | - * @GeneratedValue(strategy="AUTO") |
|
| 141 | - */ |
|
| 142 | - private $id; |
|
| 143 | - |
|
| 144 | - /** |
|
| 145 | - * |
|
| 146 | - * @var string |
|
| 147 | - * @Column(type="string", name="lemma_name", unique=true, length=255) |
|
| 148 | - */ |
|
| 149 | - private $lemma; |
|
| 150 | - |
|
| 151 | - /** |
|
| 152 | - * @var kateglo\application\utilities\collections\ArrayCollection |
|
| 153 | - * @ManyToMany(targetEntity="Type", mappedBy="lemmas", cascade={"persist"}) |
|
| 154 | - */ |
|
| 155 | - private $types; |
|
| 156 | - |
|
| 157 | - public function __construct() { |
|
| 158 | - $this->types = new ArrayCollection(); |
|
| 159 | - } |
|
| 160 | - |
|
| 161 | - |
|
| 162 | - /** |
|
| 163 | - * |
|
| 164 | - * @return int |
|
| 165 | - */ |
|
| 166 | - public function getId(){ |
|
| 167 | - return $this->id; |
|
| 168 | - } |
|
| 169 | - |
|
| 170 | - /** |
|
| 171 | - * |
|
| 172 | - * @param string $lemma |
|
| 173 | - * @return void |
|
| 174 | - */ |
|
| 175 | - public function setLemma($lemma){ |
|
| 176 | - $this->lemma = $lemma; |
|
| 177 | - } |
|
| 178 | - |
|
| 179 | - /** |
|
| 180 | - * |
|
| 181 | - * @return string |
|
| 182 | - */ |
|
| 183 | - public function getLemma(){ |
|
| 184 | - return $this->lemma; |
|
| 185 | - } |
|
| 186 | - |
|
| 187 | - /** |
|
| 134 | + const CLASS_NAME = __CLASS__; |
|
| 135 | + |
|
| 136 | + /** |
|
| 137 | + * @var int |
|
| 138 | + * @Id |
|
| 139 | + * @Column(type="integer", name="lemma_id") |
|
| 140 | + * @GeneratedValue(strategy="AUTO") |
|
| 141 | + */ |
|
| 142 | + private $id; |
|
| 143 | + |
|
| 144 | + /** |
|
| 145 | + * |
|
| 146 | + * @var string |
|
| 147 | + * @Column(type="string", name="lemma_name", unique=true, length=255) |
|
| 148 | + */ |
|
| 149 | + private $lemma; |
|
| 150 | + |
|
| 151 | + /** |
|
| 152 | + * @var kateglo\application\utilities\collections\ArrayCollection |
|
| 153 | + * @ManyToMany(targetEntity="Type", mappedBy="lemmas", cascade={"persist"}) |
|
| 154 | + */ |
|
| 155 | + private $types; |
|
| 156 | + |
|
| 157 | + public function __construct() { |
|
| 158 | + $this->types = new ArrayCollection(); |
|
| 159 | + } |
|
| 160 | + |
|
| 161 | + |
|
| 162 | + /** |
|
| 163 | + * |
|
| 164 | + * @return int |
|
| 165 | + */ |
|
| 166 | + public function getId(){ |
|
| 167 | + return $this->id; |
|
| 168 | + } |
|
| 169 | + |
|
| 170 | + /** |
|
| 171 | + * |
|
| 172 | + * @param string $lemma |
|
| 173 | + * @return void |
|
| 174 | + */ |
|
| 175 | + public function setLemma($lemma){ |
|
| 176 | + $this->lemma = $lemma; |
|
| 177 | + } |
|
| 178 | + |
|
| 179 | + /** |
|
| 180 | + * |
|
| 181 | + * @return string |
|
| 182 | + */ |
|
| 183 | + public function getLemma(){ |
|
| 184 | + return $this->lemma; |
|
| 185 | + } |
|
| 186 | + |
|
| 187 | + /** |
|
| 188 | 188 | * |
| 189 | 189 | * @param kateglo\application\models\Type $type |
| 190 | 190 | * @return void |
| 191 | 191 | */ |
| 192 | - public function addType(Type $type){ |
|
| 192 | + public function addType(Type $type){ |
|
| 193 | 193 | if (!$this->types->contains($type)) { |
| 194 | 194 | $this->types[] = $type; |
| 195 | 195 | $type->addLemma($this); |
@@ -225,121 +225,121 @@ discard block |
||
| 225 | 225 | */ |
| 226 | 226 | class Type { |
| 227 | 227 | |
| 228 | - const CLASS_NAME = __CLASS__; |
|
| 229 | - |
|
| 230 | - /** |
|
| 231 | - * |
|
| 232 | - * @var int |
|
| 233 | - * @Id |
|
| 234 | - * @Column(type="integer", name="type_id") |
|
| 235 | - * @GeneratedValue(strategy="AUTO") |
|
| 236 | - */ |
|
| 237 | - private $id; |
|
| 238 | - |
|
| 239 | - /** |
|
| 240 | - * |
|
| 241 | - * @var string |
|
| 242 | - * @Column(type="string", name="type_name", unique=true) |
|
| 243 | - */ |
|
| 244 | - private $type; |
|
| 245 | - |
|
| 246 | - /** |
|
| 247 | - * |
|
| 248 | - * @var string |
|
| 249 | - * @Column(type="string", name="type_abbreviation", unique=true) |
|
| 250 | - */ |
|
| 251 | - private $abbreviation; |
|
| 252 | - |
|
| 253 | - /** |
|
| 254 | - * @var kateglo\application\helpers\collections\ArrayCollection |
|
| 255 | - * @ManyToMany(targetEntity="Lemma") |
|
| 256 | - * @JoinTable(name="lemma_type", |
|
| 257 | - * joinColumns={@JoinColumn(name="type_id", referencedColumnName="type_id")}, |
|
| 258 | - * inverseJoinColumns={@JoinColumn(name="lemma_id", referencedColumnName="lemma_id")} |
|
| 259 | - * ) |
|
| 260 | - */ |
|
| 261 | - private $lemmas; |
|
| 262 | - |
|
| 263 | - public function __construct(){ |
|
| 264 | - $this->lemmas = new ArrayCollection(); |
|
| 265 | - } |
|
| 266 | - |
|
| 267 | - /** |
|
| 268 | - * |
|
| 269 | - * @return int |
|
| 270 | - */ |
|
| 271 | - public function getId(){ |
|
| 272 | - return $this->id; |
|
| 273 | - } |
|
| 274 | - |
|
| 275 | - /** |
|
| 276 | - * |
|
| 277 | - * @param string $type |
|
| 278 | - * @return void |
|
| 279 | - */ |
|
| 280 | - public function setType($type){ |
|
| 281 | - $this->type = $type; |
|
| 282 | - } |
|
| 283 | - |
|
| 284 | - /** |
|
| 285 | - * |
|
| 286 | - * @return string |
|
| 287 | - */ |
|
| 288 | - public function getType(){ |
|
| 289 | - return $this->type; |
|
| 290 | - } |
|
| 291 | - |
|
| 292 | - /** |
|
| 293 | - * |
|
| 294 | - * @param string $abbreviation |
|
| 295 | - * @return void |
|
| 296 | - */ |
|
| 297 | - public function setAbbreviation($abbreviation){ |
|
| 298 | - $this->abbreviation = $abbreviation; |
|
| 299 | - } |
|
| 300 | - |
|
| 301 | - /** |
|
| 302 | - * |
|
| 303 | - * @return string |
|
| 304 | - */ |
|
| 305 | - public function getAbbreviation(){ |
|
| 306 | - return $this->abbreviation; |
|
| 307 | - } |
|
| 308 | - |
|
| 309 | - /** |
|
| 310 | - * |
|
| 311 | - * @param kateglo\application\models\Lemma $lemma |
|
| 312 | - * @return void |
|
| 313 | - */ |
|
| 314 | - public function addLemma(Lemma $lemma) |
|
| 315 | - { |
|
| 316 | - if (!$this->lemmas->contains($lemma)) { |
|
| 317 | - $this->lemmas[] = $lemma; |
|
| 318 | - $lemma->addType($this); |
|
| 319 | - } |
|
| 320 | - } |
|
| 321 | - |
|
| 322 | - /** |
|
| 323 | - * |
|
| 324 | - * @param kateglo\application\models\Lemma $lemma |
|
| 325 | - * @return void |
|
| 326 | - */ |
|
| 327 | - public function removeLEmma(Lemma $lemma) |
|
| 328 | - { |
|
| 329 | - $removed = $this->lemmas->removeElement($lemma); |
|
| 330 | - if ($removed !== null) { |
|
| 331 | - $removed->removeType($this); |
|
| 332 | - } |
|
| 333 | - } |
|
| 334 | - |
|
| 335 | - /** |
|
| 336 | - * |
|
| 337 | - * @return kateglo\application\helpers\collections\ArrayCollection |
|
| 338 | - */ |
|
| 339 | - public function getCategories() |
|
| 340 | - { |
|
| 341 | - return $this->categories; |
|
| 342 | - } |
|
| 228 | + const CLASS_NAME = __CLASS__; |
|
| 229 | + |
|
| 230 | + /** |
|
| 231 | + * |
|
| 232 | + * @var int |
|
| 233 | + * @Id |
|
| 234 | + * @Column(type="integer", name="type_id") |
|
| 235 | + * @GeneratedValue(strategy="AUTO") |
|
| 236 | + */ |
|
| 237 | + private $id; |
|
| 238 | + |
|
| 239 | + /** |
|
| 240 | + * |
|
| 241 | + * @var string |
|
| 242 | + * @Column(type="string", name="type_name", unique=true) |
|
| 243 | + */ |
|
| 244 | + private $type; |
|
| 245 | + |
|
| 246 | + /** |
|
| 247 | + * |
|
| 248 | + * @var string |
|
| 249 | + * @Column(type="string", name="type_abbreviation", unique=true) |
|
| 250 | + */ |
|
| 251 | + private $abbreviation; |
|
| 252 | + |
|
| 253 | + /** |
|
| 254 | + * @var kateglo\application\helpers\collections\ArrayCollection |
|
| 255 | + * @ManyToMany(targetEntity="Lemma") |
|
| 256 | + * @JoinTable(name="lemma_type", |
|
| 257 | + * joinColumns={@JoinColumn(name="type_id", referencedColumnName="type_id")}, |
|
| 258 | + * inverseJoinColumns={@JoinColumn(name="lemma_id", referencedColumnName="lemma_id")} |
|
| 259 | + * ) |
|
| 260 | + */ |
|
| 261 | + private $lemmas; |
|
| 262 | + |
|
| 263 | + public function __construct(){ |
|
| 264 | + $this->lemmas = new ArrayCollection(); |
|
| 265 | + } |
|
| 266 | + |
|
| 267 | + /** |
|
| 268 | + * |
|
| 269 | + * @return int |
|
| 270 | + */ |
|
| 271 | + public function getId(){ |
|
| 272 | + return $this->id; |
|
| 273 | + } |
|
| 274 | + |
|
| 275 | + /** |
|
| 276 | + * |
|
| 277 | + * @param string $type |
|
| 278 | + * @return void |
|
| 279 | + */ |
|
| 280 | + public function setType($type){ |
|
| 281 | + $this->type = $type; |
|
| 282 | + } |
|
| 283 | + |
|
| 284 | + /** |
|
| 285 | + * |
|
| 286 | + * @return string |
|
| 287 | + */ |
|
| 288 | + public function getType(){ |
|
| 289 | + return $this->type; |
|
| 290 | + } |
|
| 291 | + |
|
| 292 | + /** |
|
| 293 | + * |
|
| 294 | + * @param string $abbreviation |
|
| 295 | + * @return void |
|
| 296 | + */ |
|
| 297 | + public function setAbbreviation($abbreviation){ |
|
| 298 | + $this->abbreviation = $abbreviation; |
|
| 299 | + } |
|
| 300 | + |
|
| 301 | + /** |
|
| 302 | + * |
|
| 303 | + * @return string |
|
| 304 | + */ |
|
| 305 | + public function getAbbreviation(){ |
|
| 306 | + return $this->abbreviation; |
|
| 307 | + } |
|
| 308 | + |
|
| 309 | + /** |
|
| 310 | + * |
|
| 311 | + * @param kateglo\application\models\Lemma $lemma |
|
| 312 | + * @return void |
|
| 313 | + */ |
|
| 314 | + public function addLemma(Lemma $lemma) |
|
| 315 | + { |
|
| 316 | + if (!$this->lemmas->contains($lemma)) { |
|
| 317 | + $this->lemmas[] = $lemma; |
|
| 318 | + $lemma->addType($this); |
|
| 319 | + } |
|
| 320 | + } |
|
| 321 | + |
|
| 322 | + /** |
|
| 323 | + * |
|
| 324 | + * @param kateglo\application\models\Lemma $lemma |
|
| 325 | + * @return void |
|
| 326 | + */ |
|
| 327 | + public function removeLEmma(Lemma $lemma) |
|
| 328 | + { |
|
| 329 | + $removed = $this->lemmas->removeElement($lemma); |
|
| 330 | + if ($removed !== null) { |
|
| 331 | + $removed->removeType($this); |
|
| 332 | + } |
|
| 333 | + } |
|
| 334 | + |
|
| 335 | + /** |
|
| 336 | + * |
|
| 337 | + * @return kateglo\application\helpers\collections\ArrayCollection |
|
| 338 | + */ |
|
| 339 | + public function getCategories() |
|
| 340 | + { |
|
| 341 | + return $this->categories; |
|
| 342 | + } |
|
| 343 | 343 | |
| 344 | 344 | } |
| 345 | 345 | |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | * |
| 164 | 164 | * @return int |
| 165 | 165 | */ |
| 166 | - public function getId(){ |
|
| 166 | + public function getId() { |
|
| 167 | 167 | return $this->id; |
| 168 | 168 | } |
| 169 | 169 | |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | * @param string $lemma |
| 173 | 173 | * @return void |
| 174 | 174 | */ |
| 175 | - public function setLemma($lemma){ |
|
| 175 | + public function setLemma($lemma) { |
|
| 176 | 176 | $this->lemma = $lemma; |
| 177 | 177 | } |
| 178 | 178 | |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | * |
| 181 | 181 | * @return string |
| 182 | 182 | */ |
| 183 | - public function getLemma(){ |
|
| 183 | + public function getLemma() { |
|
| 184 | 184 | return $this->lemma; |
| 185 | 185 | } |
| 186 | 186 | |
@@ -189,8 +189,8 @@ discard block |
||
| 189 | 189 | * @param kateglo\application\models\Type $type |
| 190 | 190 | * @return void |
| 191 | 191 | */ |
| 192 | - public function addType(Type $type){ |
|
| 193 | - if (!$this->types->contains($type)) { |
|
| 192 | + public function addType(Type $type) { |
|
| 193 | + if ( ! $this->types->contains($type)) { |
|
| 194 | 194 | $this->types[] = $type; |
| 195 | 195 | $type->addLemma($this); |
| 196 | 196 | } |
@@ -260,7 +260,7 @@ discard block |
||
| 260 | 260 | */ |
| 261 | 261 | private $lemmas; |
| 262 | 262 | |
| 263 | - public function __construct(){ |
|
| 263 | + public function __construct() { |
|
| 264 | 264 | $this->lemmas = new ArrayCollection(); |
| 265 | 265 | } |
| 266 | 266 | |
@@ -268,7 +268,7 @@ discard block |
||
| 268 | 268 | * |
| 269 | 269 | * @return int |
| 270 | 270 | */ |
| 271 | - public function getId(){ |
|
| 271 | + public function getId() { |
|
| 272 | 272 | return $this->id; |
| 273 | 273 | } |
| 274 | 274 | |
@@ -277,7 +277,7 @@ discard block |
||
| 277 | 277 | * @param string $type |
| 278 | 278 | * @return void |
| 279 | 279 | */ |
| 280 | - public function setType($type){ |
|
| 280 | + public function setType($type) { |
|
| 281 | 281 | $this->type = $type; |
| 282 | 282 | } |
| 283 | 283 | |
@@ -285,7 +285,7 @@ discard block |
||
| 285 | 285 | * |
| 286 | 286 | * @return string |
| 287 | 287 | */ |
| 288 | - public function getType(){ |
|
| 288 | + public function getType() { |
|
| 289 | 289 | return $this->type; |
| 290 | 290 | } |
| 291 | 291 | |
@@ -294,7 +294,7 @@ discard block |
||
| 294 | 294 | * @param string $abbreviation |
| 295 | 295 | * @return void |
| 296 | 296 | */ |
| 297 | - public function setAbbreviation($abbreviation){ |
|
| 297 | + public function setAbbreviation($abbreviation) { |
|
| 298 | 298 | $this->abbreviation = $abbreviation; |
| 299 | 299 | } |
| 300 | 300 | |
@@ -302,7 +302,7 @@ discard block |
||
| 302 | 302 | * |
| 303 | 303 | * @return string |
| 304 | 304 | */ |
| 305 | - public function getAbbreviation(){ |
|
| 305 | + public function getAbbreviation() { |
|
| 306 | 306 | return $this->abbreviation; |
| 307 | 307 | } |
| 308 | 308 | |
@@ -313,7 +313,7 @@ discard block |
||
| 313 | 313 | */ |
| 314 | 314 | public function addLemma(Lemma $lemma) |
| 315 | 315 | { |
| 316 | - if (!$this->lemmas->contains($lemma)) { |
|
| 316 | + if ( ! $this->lemmas->contains($lemma)) { |
|
| 317 | 317 | $this->lemmas[] = $lemma; |
| 318 | 318 | $lemma->addType($this); |
| 319 | 319 | } |
@@ -384,7 +384,7 @@ discard block |
||
| 384 | 384 | * @param Definition $definition |
| 385 | 385 | * @return void |
| 386 | 386 | */ |
| 387 | - public function addDefinition(Definition $definition){ |
|
| 387 | + public function addDefinition(Definition $definition) { |
|
| 388 | 388 | $this->definitions[] = $definition; |
| 389 | 389 | $definition->setPhrase($this); |
| 390 | 390 | } |
@@ -392,7 +392,7 @@ discard block |
||
| 392 | 392 | /** |
| 393 | 393 | * @return int |
| 394 | 394 | */ |
| 395 | - public function getId(){ |
|
| 395 | + public function getId() { |
|
| 396 | 396 | return $this->id; |
| 397 | 397 | } |
| 398 | 398 | |
@@ -400,14 +400,14 @@ discard block |
||
| 400 | 400 | * @param string $phrase |
| 401 | 401 | * @return void |
| 402 | 402 | */ |
| 403 | - public function setPhrase($phrase){ |
|
| 403 | + public function setPhrase($phrase) { |
|
| 404 | 404 | $this->phrase = $phrase; |
| 405 | 405 | } |
| 406 | 406 | |
| 407 | 407 | /** |
| 408 | 408 | * @return string |
| 409 | 409 | */ |
| 410 | - public function getPhrase(){ |
|
| 410 | + public function getPhrase() { |
|
| 411 | 411 | return $this->phrase; |
| 412 | 412 | } |
| 413 | 413 | |
@@ -416,7 +416,7 @@ discard block |
||
| 416 | 416 | * @param PhraseType $type |
| 417 | 417 | * @return void |
| 418 | 418 | */ |
| 419 | - public function setType(PhraseType $type){ |
|
| 419 | + public function setType(PhraseType $type) { |
|
| 420 | 420 | $this->type = $type; |
| 421 | 421 | } |
| 422 | 422 | |
@@ -424,7 +424,7 @@ discard block |
||
| 424 | 424 | * |
| 425 | 425 | * @return PhraseType |
| 426 | 426 | */ |
| 427 | - public function getType(){ |
|
| 427 | + public function getType() { |
|
| 428 | 428 | return $this->type; |
| 429 | 429 | } |
| 430 | 430 | |
@@ -432,7 +432,7 @@ discard block |
||
| 432 | 432 | * |
| 433 | 433 | * @return ArrayCollection |
| 434 | 434 | */ |
| 435 | - public function getDefinitions(){ |
|
| 435 | + public function getDefinitions() { |
|
| 436 | 436 | return $this->definitions; |
| 437 | 437 | } |
| 438 | 438 | } |
@@ -474,7 +474,7 @@ discard block |
||
| 474 | 474 | /** |
| 475 | 475 | * @return int |
| 476 | 476 | */ |
| 477 | - public function getId(){ |
|
| 477 | + public function getId() { |
|
| 478 | 478 | return $this->id; |
| 479 | 479 | } |
| 480 | 480 | |
@@ -482,14 +482,14 @@ discard block |
||
| 482 | 482 | * @param string $type |
| 483 | 483 | * @return void |
| 484 | 484 | */ |
| 485 | - public function setType($type){ |
|
| 485 | + public function setType($type) { |
|
| 486 | 486 | $this->type = $type; |
| 487 | 487 | } |
| 488 | 488 | |
| 489 | 489 | /** |
| 490 | 490 | * @return string |
| 491 | 491 | */ |
| 492 | - public function getType(){ |
|
| 492 | + public function getType() { |
|
| 493 | 493 | return $this->type; |
| 494 | 494 | } |
| 495 | 495 | |
@@ -497,14 +497,14 @@ discard block |
||
| 497 | 497 | * @param string $abbreviation |
| 498 | 498 | * @return void |
| 499 | 499 | */ |
| 500 | - public function setAbbreviation($abbreviation){ |
|
| 500 | + public function setAbbreviation($abbreviation) { |
|
| 501 | 501 | $this->abbreviation = $abbreviation; |
| 502 | 502 | } |
| 503 | 503 | |
| 504 | 504 | /** |
| 505 | 505 | * @return string |
| 506 | 506 | */ |
| 507 | - public function getAbbreviation(){ |
|
| 507 | + public function getAbbreviation() { |
|
| 508 | 508 | return $this->abbreviation; |
| 509 | 509 | } |
| 510 | 510 | |
@@ -512,7 +512,7 @@ discard block |
||
| 512 | 512 | * @param ArrayCollection $phrases |
| 513 | 513 | * @return void |
| 514 | 514 | */ |
| 515 | - public function setPhrases($phrases){ |
|
| 515 | + public function setPhrases($phrases) { |
|
| 516 | 516 | $this->phrases = $phrases; |
| 517 | 517 | } |
| 518 | 518 | |
@@ -520,7 +520,7 @@ discard block |
||
| 520 | 520 | * |
| 521 | 521 | * @return ArrayCollection |
| 522 | 522 | */ |
| 523 | - public function getPhrases(){ |
|
| 523 | + public function getPhrases() { |
|
| 524 | 524 | return $this->phrases; |
| 525 | 525 | } |
| 526 | 526 | |
@@ -555,7 +555,7 @@ discard block |
||
| 555 | 555 | /** |
| 556 | 556 | * @return int |
| 557 | 557 | */ |
| 558 | - public function getId(){ |
|
| 558 | + public function getId() { |
|
| 559 | 559 | return $this->id; |
| 560 | 560 | } |
| 561 | 561 | |
@@ -563,14 +563,14 @@ discard block |
||
| 563 | 563 | * @param Phrase $phrase |
| 564 | 564 | * @return void |
| 565 | 565 | */ |
| 566 | - public function setPhrase(Phrase $phrase){ |
|
| 566 | + public function setPhrase(Phrase $phrase) { |
|
| 567 | 567 | $this->phrase = $phrase; |
| 568 | 568 | } |
| 569 | 569 | |
| 570 | 570 | /** |
| 571 | 571 | * @return Phrase |
| 572 | 572 | */ |
| 573 | - public function getPhrase(){ |
|
| 573 | + public function getPhrase() { |
|
| 574 | 574 | return $this->phrase; |
| 575 | 575 | } |
| 576 | 576 | |
@@ -587,14 +587,14 @@ discard block |
||
| 587 | 587 | * @param string $definition |
| 588 | 588 | * @return void |
| 589 | 589 | */ |
| 590 | - public function setDefinition($definition){ |
|
| 590 | + public function setDefinition($definition) { |
|
| 591 | 591 | $this->definition = $definition; |
| 592 | 592 | } |
| 593 | 593 | |
| 594 | 594 | /** |
| 595 | 595 | * @return string |
| 596 | 596 | */ |
| 597 | - public function getDefinition(){ |
|
| 597 | + public function getDefinition() { |
|
| 598 | 598 | return $this->definition; |
| 599 | 599 | } |
| 600 | 600 | } |
@@ -45,6 +45,9 @@ |
||
| 45 | 45 | */ |
| 46 | 46 | class ConvertDoctrine1SchemaTest extends OrmTestCase |
| 47 | 47 | { |
| 48 | + /** |
|
| 49 | + * @param YamlDriver $metadataDriver |
|
| 50 | + */ |
|
| 48 | 51 | protected function _createEntityManager($metadataDriver) |
| 49 | 52 | { |
| 50 | 53 | $driverMock = new DriverMock(); |
@@ -25,7 +25,6 @@ |
||
| 25 | 25 | use Doctrine\ORM\Mapping\Driver\YamlDriver; |
| 26 | 26 | use Doctrine\ORM\Tools\Export\ClassMetadataExporter; |
| 27 | 27 | use Doctrine\ORM\Tools\ConvertDoctrine1Schema; |
| 28 | -use Doctrine\Tests\Mocks\MetadataDriverMock; |
|
| 29 | 28 | use Doctrine\Tests\Mocks\EntityManagerMock; |
| 30 | 29 | use Doctrine\Tests\Mocks\ConnectionMock; |
| 31 | 30 | use Doctrine\Tests\Mocks\DriverMock; |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | { |
| 31 | 31 | $driverMock = new DriverMock(); |
| 32 | 32 | $config = new Configuration(); |
| 33 | - $config->setProxyDir(__DIR__ . '/../../Proxies'); |
|
| 33 | + $config->setProxyDir(__DIR__.'/../../Proxies'); |
|
| 34 | 34 | $config->setProxyNamespace('Doctrine\Tests\Proxies'); |
| 35 | 35 | $eventManager = new EventManager(); |
| 36 | 36 | $conn = new ConnectionMock([], $driverMock, $config, $eventManager); |
@@ -46,17 +46,17 @@ discard block |
||
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | $cme = new ClassMetadataExporter(); |
| 49 | - $converter = new ConvertDoctrine1Schema(__DIR__ . '/doctrine1schema'); |
|
| 49 | + $converter = new ConvertDoctrine1Schema(__DIR__.'/doctrine1schema'); |
|
| 50 | 50 | |
| 51 | - $exporter = $cme->getExporter('yml', __DIR__ . '/convert'); |
|
| 51 | + $exporter = $cme->getExporter('yml', __DIR__.'/convert'); |
|
| 52 | 52 | $exporter->setOverwriteExistingFiles(true); |
| 53 | 53 | $exporter->setMetadata($converter->getMetadata()); |
| 54 | 54 | $exporter->export(); |
| 55 | 55 | |
| 56 | - $this->assertTrue(file_exists(__DIR__ . '/convert/User.dcm.yml')); |
|
| 57 | - $this->assertTrue(file_exists(__DIR__ . '/convert/Profile.dcm.yml')); |
|
| 56 | + $this->assertTrue(file_exists(__DIR__.'/convert/User.dcm.yml')); |
|
| 57 | + $this->assertTrue(file_exists(__DIR__.'/convert/Profile.dcm.yml')); |
|
| 58 | 58 | |
| 59 | - $metadataDriver = new YamlDriver(__DIR__ . '/convert'); |
|
| 59 | + $metadataDriver = new YamlDriver(__DIR__.'/convert'); |
|
| 60 | 60 | $em = $this->_createEntityManager($metadataDriver); |
| 61 | 61 | $cmf = new DisconnectedClassMetadataFactory(); |
| 62 | 62 | $cmf->setEntityManager($em); |
@@ -81,8 +81,8 @@ discard block |
||
| 81 | 81 | |
| 82 | 82 | public function tearDown() |
| 83 | 83 | { |
| 84 | - @unlink(__DIR__ . '/convert/User.dcm.yml'); |
|
| 85 | - @unlink(__DIR__ . '/convert/Profile.dcm.yml'); |
|
| 86 | - @rmdir(__DIR__ . '/convert'); |
|
| 84 | + @unlink(__DIR__.'/convert/User.dcm.yml'); |
|
| 85 | + @unlink(__DIR__.'/convert/Profile.dcm.yml'); |
|
| 86 | + @rmdir(__DIR__.'/convert'); |
|
| 87 | 87 | } |
| 88 | 88 | } |
@@ -4,9 +4,7 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Doctrine\ORM\EntityManagerInterface; |
| 6 | 6 | use Doctrine\ORM\Proxy\ProxyFactory; |
| 7 | -use Doctrine\ORM\Query; |
|
| 8 | 7 | use Doctrine\ORM\Query\ResultSetMapping; |
| 9 | -use Doctrine\Tests\ORM\Performance\MockUnitOfWork; |
|
| 10 | 8 | |
| 11 | 9 | /** |
| 12 | 10 | * An entity manager mock that prevents lazy-loading of proxies |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | /** |
| 130 | - * @param field_type $fooTitle |
|
| 130 | + * @param string $fooTitle |
|
| 131 | 131 | */ |
| 132 | 132 | public function setFooTitle($fooTitle) |
| 133 | 133 | { |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | /** |
| 208 | - * @param field_type $barTitle |
|
| 208 | + * @param string $barTitle |
|
| 209 | 209 | */ |
| 210 | 210 | public function setBarTitle($barTitle) |
| 211 | 211 | { |
@@ -301,14 +301,14 @@ |
||
| 301 | 301 | */ |
| 302 | 302 | private function resolveMagicCall($method, $by, array $arguments) |
| 303 | 303 | { |
| 304 | - if (! $arguments) { |
|
| 305 | - throw ORMException::findByRequiresParameter($method . $by); |
|
| 304 | + if ( ! $arguments) { |
|
| 305 | + throw ORMException::findByRequiresParameter($method.$by); |
|
| 306 | 306 | } |
| 307 | 307 | |
| 308 | 308 | $fieldName = lcfirst(Inflector::classify($by)); |
| 309 | 309 | |
| 310 | - if (! ($this->_class->hasField($fieldName) || $this->_class->hasAssociation($fieldName))) { |
|
| 311 | - throw ORMException::invalidMagicCall($this->_entityName, $fieldName, $method . $by); |
|
| 310 | + if ( ! ($this->_class->hasField($fieldName) || $this->_class->hasAssociation($fieldName))) { |
|
| 311 | + throw ORMException::invalidMagicCall($this->_entityName, $fieldName, $method.$by); |
|
| 312 | 312 | } |
| 313 | 313 | |
| 314 | 314 | return $this->$method([$fieldName => $arguments[0]], ...array_slice($arguments, 1)); |
@@ -33,7 +33,6 @@ |
||
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | - * @param \Doctrine\ORM\EntityManager $entityClassName |
|
| 37 | 36 | * @return \Doctrine\ORM\Mapping\ClassMetadataFactory |
| 38 | 37 | */ |
| 39 | 38 | protected function createClassMetadataFactory(EntityManager $em = null) |
@@ -739,7 +739,7 @@ discard block |
||
| 739 | 739 | $this->assertEquals($guestGroups['isCascadeMerge'], $adminGroups['isCascadeMerge']); |
| 740 | 740 | $this->assertEquals($guestGroups['isCascadeDetach'], $adminGroups['isCascadeDetach']); |
| 741 | 741 | |
| 742 | - // assert not override attributes |
|
| 742 | + // assert not override attributes |
|
| 743 | 743 | $this->assertEquals('ddc964_users_groups', $guestGroups['joinTable']['name']); |
| 744 | 744 | $this->assertEquals('user_id', $guestGroups['joinTable']['joinColumns'][0]['name']); |
| 745 | 745 | $this->assertEquals('group_id', $guestGroups['joinTable']['inverseJoinColumns'][0]['name']); |
@@ -1166,8 +1166,8 @@ discard block |
||
| 1166 | 1166 | $metadata->setInheritanceType(ClassMetadataInfo::INHERITANCE_TYPE_NONE); |
| 1167 | 1167 | $metadata->setPrimaryTable( |
| 1168 | 1168 | [ |
| 1169 | - 'name' => 'cms_users', |
|
| 1170 | - 'options' => ['foo' => 'bar', 'baz' => ['key' => 'val']], |
|
| 1169 | + 'name' => 'cms_users', |
|
| 1170 | + 'options' => ['foo' => 'bar', 'baz' => ['key' => 'val']], |
|
| 1171 | 1171 | ] |
| 1172 | 1172 | ); |
| 1173 | 1173 | $metadata->setChangeTrackingPolicy(ClassMetadataInfo::CHANGETRACKING_DEFERRED_IMPLICIT); |
@@ -1176,30 +1176,30 @@ discard block |
||
| 1176 | 1176 | $metadata->addLifecycleCallback('doStuffOnPostPersist', 'postPersist'); |
| 1177 | 1177 | $metadata->mapField( |
| 1178 | 1178 | [ |
| 1179 | - 'id' => true, |
|
| 1180 | - 'fieldName' => 'id', |
|
| 1181 | - 'type' => 'integer', |
|
| 1182 | - 'columnName' => 'id', |
|
| 1183 | - 'options' => ['foo' => 'bar', 'unsigned' => false], |
|
| 1179 | + 'id' => true, |
|
| 1180 | + 'fieldName' => 'id', |
|
| 1181 | + 'type' => 'integer', |
|
| 1182 | + 'columnName' => 'id', |
|
| 1183 | + 'options' => ['foo' => 'bar', 'unsigned' => false], |
|
| 1184 | 1184 | ] |
| 1185 | 1185 | ); |
| 1186 | 1186 | $metadata->mapField( |
| 1187 | 1187 | [ |
| 1188 | - 'fieldName' => 'name', |
|
| 1189 | - 'type' => 'string', |
|
| 1190 | - 'length' => 50, |
|
| 1191 | - 'unique' => true, |
|
| 1192 | - 'nullable' => true, |
|
| 1193 | - 'columnName' => 'name', |
|
| 1194 | - 'options' => ['foo' => 'bar', 'baz' => ['key' => 'val'], 'fixed' => false], |
|
| 1188 | + 'fieldName' => 'name', |
|
| 1189 | + 'type' => 'string', |
|
| 1190 | + 'length' => 50, |
|
| 1191 | + 'unique' => true, |
|
| 1192 | + 'nullable' => true, |
|
| 1193 | + 'columnName' => 'name', |
|
| 1194 | + 'options' => ['foo' => 'bar', 'baz' => ['key' => 'val'], 'fixed' => false], |
|
| 1195 | 1195 | ] |
| 1196 | 1196 | ); |
| 1197 | 1197 | $metadata->mapField( |
| 1198 | 1198 | [ |
| 1199 | - 'fieldName' => 'email', |
|
| 1200 | - 'type' => 'string', |
|
| 1201 | - 'columnName' => 'user_email', |
|
| 1202 | - 'columnDefinition' => 'CHAR(32) NOT NULL', |
|
| 1199 | + 'fieldName' => 'email', |
|
| 1200 | + 'type' => 'string', |
|
| 1201 | + 'columnName' => 'user_email', |
|
| 1202 | + 'columnDefinition' => 'CHAR(32) NOT NULL', |
|
| 1203 | 1203 | ] |
| 1204 | 1204 | ); |
| 1205 | 1205 | $mapping = ['fieldName' => 'version', 'type' => 'integer']; |
@@ -1208,60 +1208,60 @@ discard block |
||
| 1208 | 1208 | $metadata->setIdGeneratorType(ClassMetadataInfo::GENERATOR_TYPE_AUTO); |
| 1209 | 1209 | $metadata->mapOneToOne( |
| 1210 | 1210 | [ |
| 1211 | - 'fieldName' => 'address', |
|
| 1212 | - 'targetEntity' => Address::class, |
|
| 1213 | - 'cascade' => |
|
| 1214 | - [ |
|
| 1215 | - 0 => 'remove', |
|
| 1216 | - ], |
|
| 1217 | - 'mappedBy' => NULL, |
|
| 1218 | - 'inversedBy' => 'user', |
|
| 1219 | - 'joinColumns' => |
|
| 1220 | - [ |
|
| 1221 | - 0 => |
|
| 1222 | - [ |
|
| 1211 | + 'fieldName' => 'address', |
|
| 1212 | + 'targetEntity' => Address::class, |
|
| 1213 | + 'cascade' => |
|
| 1214 | + [ |
|
| 1215 | + 0 => 'remove', |
|
| 1216 | + ], |
|
| 1217 | + 'mappedBy' => NULL, |
|
| 1218 | + 'inversedBy' => 'user', |
|
| 1219 | + 'joinColumns' => |
|
| 1220 | + [ |
|
| 1221 | + 0 => |
|
| 1222 | + [ |
|
| 1223 | 1223 | 'name' => 'address_id', |
| 1224 | 1224 | 'referencedColumnName' => 'id', |
| 1225 | 1225 | 'onDelete' => 'CASCADE', |
| 1226 | - ], |
|
| 1227 | - ], |
|
| 1228 | - 'orphanRemoval' => false, |
|
| 1226 | + ], |
|
| 1227 | + ], |
|
| 1228 | + 'orphanRemoval' => false, |
|
| 1229 | 1229 | ] |
| 1230 | 1230 | ); |
| 1231 | 1231 | $metadata->mapOneToMany( |
| 1232 | 1232 | [ |
| 1233 | - 'fieldName' => 'phonenumbers', |
|
| 1234 | - 'targetEntity' => Phonenumber::class, |
|
| 1235 | - 'cascade' => |
|
| 1236 | - [ |
|
| 1237 | - 1 => 'persist', |
|
| 1238 | - ], |
|
| 1239 | - 'mappedBy' => 'user', |
|
| 1240 | - 'orphanRemoval' => true, |
|
| 1241 | - 'orderBy' => |
|
| 1242 | - [ |
|
| 1243 | - 'number' => 'ASC', |
|
| 1244 | - ], |
|
| 1233 | + 'fieldName' => 'phonenumbers', |
|
| 1234 | + 'targetEntity' => Phonenumber::class, |
|
| 1235 | + 'cascade' => |
|
| 1236 | + [ |
|
| 1237 | + 1 => 'persist', |
|
| 1238 | + ], |
|
| 1239 | + 'mappedBy' => 'user', |
|
| 1240 | + 'orphanRemoval' => true, |
|
| 1241 | + 'orderBy' => |
|
| 1242 | + [ |
|
| 1243 | + 'number' => 'ASC', |
|
| 1244 | + ], |
|
| 1245 | 1245 | ] |
| 1246 | 1246 | ); |
| 1247 | 1247 | $metadata->mapManyToMany( |
| 1248 | 1248 | [ |
| 1249 | - 'fieldName' => 'groups', |
|
| 1250 | - 'targetEntity' => Group::class, |
|
| 1251 | - 'cascade' => |
|
| 1252 | - [ |
|
| 1253 | - 0 => 'remove', |
|
| 1254 | - 1 => 'persist', |
|
| 1255 | - 2 => 'refresh', |
|
| 1256 | - 3 => 'merge', |
|
| 1257 | - 4 => 'detach', |
|
| 1258 | - ], |
|
| 1259 | - 'mappedBy' => NULL, |
|
| 1260 | - 'joinTable' => |
|
| 1261 | - [ |
|
| 1262 | - 'name' => 'cms_users_groups', |
|
| 1263 | - 'joinColumns' => |
|
| 1264 | - [ |
|
| 1249 | + 'fieldName' => 'groups', |
|
| 1250 | + 'targetEntity' => Group::class, |
|
| 1251 | + 'cascade' => |
|
| 1252 | + [ |
|
| 1253 | + 0 => 'remove', |
|
| 1254 | + 1 => 'persist', |
|
| 1255 | + 2 => 'refresh', |
|
| 1256 | + 3 => 'merge', |
|
| 1257 | + 4 => 'detach', |
|
| 1258 | + ], |
|
| 1259 | + 'mappedBy' => NULL, |
|
| 1260 | + 'joinTable' => |
|
| 1261 | + [ |
|
| 1262 | + 'name' => 'cms_users_groups', |
|
| 1263 | + 'joinColumns' => |
|
| 1264 | + [ |
|
| 1265 | 1265 | 0 => |
| 1266 | 1266 | [ |
| 1267 | 1267 | 'name' => 'user_id', |
@@ -1269,18 +1269,18 @@ discard block |
||
| 1269 | 1269 | 'unique' => false, |
| 1270 | 1270 | 'nullable' => false, |
| 1271 | 1271 | ], |
| 1272 | - ], |
|
| 1273 | - 'inverseJoinColumns' => |
|
| 1274 | - [ |
|
| 1272 | + ], |
|
| 1273 | + 'inverseJoinColumns' => |
|
| 1274 | + [ |
|
| 1275 | 1275 | 0 => |
| 1276 | 1276 | [ |
| 1277 | 1277 | 'name' => 'group_id', |
| 1278 | 1278 | 'referencedColumnName' => 'id', |
| 1279 | 1279 | 'columnDefinition' => 'INT NULL', |
| 1280 | 1280 | ], |
| 1281 | - ], |
|
| 1282 | - ], |
|
| 1283 | - 'orderBy' => NULL, |
|
| 1281 | + ], |
|
| 1282 | + ], |
|
| 1283 | + 'orderBy' => NULL, |
|
| 1284 | 1284 | ] |
| 1285 | 1285 | ); |
| 1286 | 1286 | $metadata->table['uniqueConstraints'] = [ |
@@ -1391,9 +1391,9 @@ discard block |
||
| 1391 | 1391 | { |
| 1392 | 1392 | $metadata->mapField( |
| 1393 | 1393 | [ |
| 1394 | - 'id' => true, |
|
| 1395 | - 'fieldName' => 'id', |
|
| 1396 | - 'columnDefinition' => 'INT unsigned NOT NULL', |
|
| 1394 | + 'id' => true, |
|
| 1395 | + 'fieldName' => 'id', |
|
| 1396 | + 'columnDefinition' => 'INT unsigned NOT NULL', |
|
| 1397 | 1397 | ] |
| 1398 | 1398 | ); |
| 1399 | 1399 | |
@@ -1422,16 +1422,16 @@ discard block |
||
| 1422 | 1422 | * @Column(type="integer") |
| 1423 | 1423 | * @GeneratedValue(strategy="NONE") |
| 1424 | 1424 | **/ |
| 1425 | - public $id; |
|
| 1425 | + public $id; |
|
| 1426 | 1426 | |
| 1427 | - public static function loadMetadata(ClassMetadataInfo $metadata) |
|
| 1427 | + public static function loadMetadata(ClassMetadataInfo $metadata) |
|
| 1428 | 1428 | { |
| 1429 | - $metadata->mapField( |
|
| 1430 | - [ |
|
| 1431 | - 'id' => true, |
|
| 1432 | - 'fieldName' => 'id', |
|
| 1433 | - ] |
|
| 1434 | - ); |
|
| 1429 | + $metadata->mapField( |
|
| 1430 | + [ |
|
| 1431 | + 'id' => true, |
|
| 1432 | + 'fieldName' => 'id', |
|
| 1433 | + ] |
|
| 1434 | + ); |
|
| 1435 | 1435 | |
| 1436 | 1436 | $metadata->setDiscriminatorColumn( |
| 1437 | 1437 | [ |
@@ -605,13 +605,13 @@ discard block |
||
| 605 | 605 | |
| 606 | 606 | $findByIdQuery = $class->getNamedNativeQuery('find-by-id'); |
| 607 | 607 | $this->assertEquals('find-by-id', $findByIdQuery['name']); |
| 608 | - $this->assertEquals(CmsAddress::class,$findByIdQuery['resultClass']); |
|
| 609 | - $this->assertEquals('SELECT * FROM cms_addresses WHERE id = ?', $findByIdQuery['query']); |
|
| 608 | + $this->assertEquals(CmsAddress::class, $findByIdQuery['resultClass']); |
|
| 609 | + $this->assertEquals('SELECT * FROM cms_addresses WHERE id = ?', $findByIdQuery['query']); |
|
| 610 | 610 | |
| 611 | 611 | $countQuery = $class->getNamedNativeQuery('count'); |
| 612 | 612 | $this->assertEquals('count', $countQuery['name']); |
| 613 | 613 | $this->assertEquals('mapping-count', $countQuery['resultSetMapping']); |
| 614 | - $this->assertEquals('SELECT COUNT(*) AS count FROM cms_addresses', $countQuery['query']); |
|
| 614 | + $this->assertEquals('SELECT COUNT(*) AS count FROM cms_addresses', $countQuery['query']); |
|
| 615 | 615 | |
| 616 | 616 | // result set mapping |
| 617 | 617 | $this->assertCount(3, $class->sqlResultSetMappings); |
@@ -622,9 +622,9 @@ discard block |
||
| 622 | 622 | $findAllMapping = $class->getSqlResultSetMapping('mapping-find-all'); |
| 623 | 623 | $this->assertEquals('mapping-find-all', $findAllMapping['name']); |
| 624 | 624 | $this->assertEquals(CmsAddress::class, $findAllMapping['entities'][0]['entityClass']); |
| 625 | - $this->assertEquals(['name'=>'id','column'=>'id'], $findAllMapping['entities'][0]['fields'][0]); |
|
| 626 | - $this->assertEquals(['name'=>'city','column'=>'city'], $findAllMapping['entities'][0]['fields'][1]); |
|
| 627 | - $this->assertEquals(['name'=>'country','column'=>'country'], $findAllMapping['entities'][0]['fields'][2]); |
|
| 625 | + $this->assertEquals(['name'=>'id', 'column'=>'id'], $findAllMapping['entities'][0]['fields'][0]); |
|
| 626 | + $this->assertEquals(['name'=>'city', 'column'=>'city'], $findAllMapping['entities'][0]['fields'][1]); |
|
| 627 | + $this->assertEquals(['name'=>'country', 'column'=>'country'], $findAllMapping['entities'][0]['fields'][2]); |
|
| 628 | 628 | |
| 629 | 629 | $withoutFieldsMapping = $class->getSqlResultSetMapping('mapping-without-fields'); |
| 630 | 630 | $this->assertEquals('mapping-without-fields', $withoutFieldsMapping['name']); |
@@ -650,62 +650,62 @@ discard block |
||
| 650 | 650 | $this->assertCount(4, $userMetadata->getSqlResultSetMappings()); |
| 651 | 651 | |
| 652 | 652 | $mapping = $userMetadata->getSqlResultSetMapping('mappingJoinedAddress'); |
| 653 | - $this->assertEquals([],$mapping['columns']); |
|
| 653 | + $this->assertEquals([], $mapping['columns']); |
|
| 654 | 654 | $this->assertEquals('mappingJoinedAddress', $mapping['name']); |
| 655 | 655 | $this->assertNull($mapping['entities'][0]['discriminatorColumn']); |
| 656 | - $this->assertEquals(['name'=>'id','column'=>'id'], $mapping['entities'][0]['fields'][0]); |
|
| 657 | - $this->assertEquals(['name'=>'name','column'=>'name'], $mapping['entities'][0]['fields'][1]); |
|
| 658 | - $this->assertEquals(['name'=>'status','column'=>'status'], $mapping['entities'][0]['fields'][2]); |
|
| 659 | - $this->assertEquals(['name'=>'address.zip','column'=>'zip'], $mapping['entities'][0]['fields'][3]); |
|
| 660 | - $this->assertEquals(['name'=>'address.city','column'=>'city'], $mapping['entities'][0]['fields'][4]); |
|
| 661 | - $this->assertEquals(['name'=>'address.country','column'=>'country'], $mapping['entities'][0]['fields'][5]); |
|
| 662 | - $this->assertEquals(['name'=>'address.id','column'=>'a_id'], $mapping['entities'][0]['fields'][6]); |
|
| 663 | - $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']); |
|
| 656 | + $this->assertEquals(['name'=>'id', 'column'=>'id'], $mapping['entities'][0]['fields'][0]); |
|
| 657 | + $this->assertEquals(['name'=>'name', 'column'=>'name'], $mapping['entities'][0]['fields'][1]); |
|
| 658 | + $this->assertEquals(['name'=>'status', 'column'=>'status'], $mapping['entities'][0]['fields'][2]); |
|
| 659 | + $this->assertEquals(['name'=>'address.zip', 'column'=>'zip'], $mapping['entities'][0]['fields'][3]); |
|
| 660 | + $this->assertEquals(['name'=>'address.city', 'column'=>'city'], $mapping['entities'][0]['fields'][4]); |
|
| 661 | + $this->assertEquals(['name'=>'address.country', 'column'=>'country'], $mapping['entities'][0]['fields'][5]); |
|
| 662 | + $this->assertEquals(['name'=>'address.id', 'column'=>'a_id'], $mapping['entities'][0]['fields'][6]); |
|
| 663 | + $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']); |
|
| 664 | 664 | |
| 665 | 665 | |
| 666 | 666 | $mapping = $userMetadata->getSqlResultSetMapping('mappingJoinedPhonenumber'); |
| 667 | - $this->assertEquals([],$mapping['columns']); |
|
| 667 | + $this->assertEquals([], $mapping['columns']); |
|
| 668 | 668 | $this->assertEquals('mappingJoinedPhonenumber', $mapping['name']); |
| 669 | 669 | $this->assertNull($mapping['entities'][0]['discriminatorColumn']); |
| 670 | - $this->assertEquals(['name'=>'id','column'=>'id'], $mapping['entities'][0]['fields'][0]); |
|
| 671 | - $this->assertEquals(['name'=>'name','column'=>'name'], $mapping['entities'][0]['fields'][1]); |
|
| 672 | - $this->assertEquals(['name'=>'status','column'=>'status'], $mapping['entities'][0]['fields'][2]); |
|
| 673 | - $this->assertEquals(['name'=>'phonenumbers.phonenumber','column'=>'number'], $mapping['entities'][0]['fields'][3]); |
|
| 674 | - $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']); |
|
| 670 | + $this->assertEquals(['name'=>'id', 'column'=>'id'], $mapping['entities'][0]['fields'][0]); |
|
| 671 | + $this->assertEquals(['name'=>'name', 'column'=>'name'], $mapping['entities'][0]['fields'][1]); |
|
| 672 | + $this->assertEquals(['name'=>'status', 'column'=>'status'], $mapping['entities'][0]['fields'][2]); |
|
| 673 | + $this->assertEquals(['name'=>'phonenumbers.phonenumber', 'column'=>'number'], $mapping['entities'][0]['fields'][3]); |
|
| 674 | + $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']); |
|
| 675 | 675 | |
| 676 | 676 | $mapping = $userMetadata->getSqlResultSetMapping('mappingUserPhonenumberCount'); |
| 677 | - $this->assertEquals(['name'=>'numphones'],$mapping['columns'][0]); |
|
| 677 | + $this->assertEquals(['name'=>'numphones'], $mapping['columns'][0]); |
|
| 678 | 678 | $this->assertEquals('mappingUserPhonenumberCount', $mapping['name']); |
| 679 | 679 | $this->assertNull($mapping['entities'][0]['discriminatorColumn']); |
| 680 | - $this->assertEquals(['name'=>'id','column'=>'id'], $mapping['entities'][0]['fields'][0]); |
|
| 681 | - $this->assertEquals(['name'=>'name','column'=>'name'], $mapping['entities'][0]['fields'][1]); |
|
| 682 | - $this->assertEquals(['name'=>'status','column'=>'status'], $mapping['entities'][0]['fields'][2]); |
|
| 683 | - $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']); |
|
| 680 | + $this->assertEquals(['name'=>'id', 'column'=>'id'], $mapping['entities'][0]['fields'][0]); |
|
| 681 | + $this->assertEquals(['name'=>'name', 'column'=>'name'], $mapping['entities'][0]['fields'][1]); |
|
| 682 | + $this->assertEquals(['name'=>'status', 'column'=>'status'], $mapping['entities'][0]['fields'][2]); |
|
| 683 | + $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']); |
|
| 684 | 684 | |
| 685 | 685 | $mapping = $userMetadata->getSqlResultSetMapping('mappingMultipleJoinsEntityResults'); |
| 686 | - $this->assertEquals(['name'=>'numphones'],$mapping['columns'][0]); |
|
| 686 | + $this->assertEquals(['name'=>'numphones'], $mapping['columns'][0]); |
|
| 687 | 687 | $this->assertEquals('mappingMultipleJoinsEntityResults', $mapping['name']); |
| 688 | 688 | $this->assertNull($mapping['entities'][0]['discriminatorColumn']); |
| 689 | - $this->assertEquals(['name'=>'id','column'=>'u_id'], $mapping['entities'][0]['fields'][0]); |
|
| 690 | - $this->assertEquals(['name'=>'name','column'=>'u_name'], $mapping['entities'][0]['fields'][1]); |
|
| 691 | - $this->assertEquals(['name'=>'status','column'=>'u_status'], $mapping['entities'][0]['fields'][2]); |
|
| 692 | - $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']); |
|
| 689 | + $this->assertEquals(['name'=>'id', 'column'=>'u_id'], $mapping['entities'][0]['fields'][0]); |
|
| 690 | + $this->assertEquals(['name'=>'name', 'column'=>'u_name'], $mapping['entities'][0]['fields'][1]); |
|
| 691 | + $this->assertEquals(['name'=>'status', 'column'=>'u_status'], $mapping['entities'][0]['fields'][2]); |
|
| 692 | + $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']); |
|
| 693 | 693 | $this->assertNull($mapping['entities'][1]['discriminatorColumn']); |
| 694 | - $this->assertEquals(['name'=>'id','column'=>'a_id'], $mapping['entities'][1]['fields'][0]); |
|
| 695 | - $this->assertEquals(['name'=>'zip','column'=>'a_zip'], $mapping['entities'][1]['fields'][1]); |
|
| 696 | - $this->assertEquals(['name'=>'country','column'=>'a_country'], $mapping['entities'][1]['fields'][2]); |
|
| 697 | - $this->assertEquals(CmsAddress::class, $mapping['entities'][1]['entityClass']); |
|
| 694 | + $this->assertEquals(['name'=>'id', 'column'=>'a_id'], $mapping['entities'][1]['fields'][0]); |
|
| 695 | + $this->assertEquals(['name'=>'zip', 'column'=>'a_zip'], $mapping['entities'][1]['fields'][1]); |
|
| 696 | + $this->assertEquals(['name'=>'country', 'column'=>'a_country'], $mapping['entities'][1]['fields'][2]); |
|
| 697 | + $this->assertEquals(CmsAddress::class, $mapping['entities'][1]['entityClass']); |
|
| 698 | 698 | |
| 699 | 699 | //person asserts |
| 700 | 700 | $this->assertCount(1, $personMetadata->getSqlResultSetMappings()); |
| 701 | 701 | |
| 702 | 702 | $mapping = $personMetadata->getSqlResultSetMapping('mappingFetchAll'); |
| 703 | - $this->assertEquals([],$mapping['columns']); |
|
| 703 | + $this->assertEquals([], $mapping['columns']); |
|
| 704 | 704 | $this->assertEquals('mappingFetchAll', $mapping['name']); |
| 705 | - $this->assertEquals('discriminator', $mapping['entities'][0]['discriminatorColumn']); |
|
| 706 | - $this->assertEquals(['name'=>'id','column'=>'id'], $mapping['entities'][0]['fields'][0]); |
|
| 707 | - $this->assertEquals(['name'=>'name','column'=>'name'], $mapping['entities'][0]['fields'][1]); |
|
| 708 | - $this->assertEquals($personMetadata->name, $mapping['entities'][0]['entityClass']); |
|
| 705 | + $this->assertEquals('discriminator', $mapping['entities'][0]['discriminatorColumn']); |
|
| 706 | + $this->assertEquals(['name'=>'id', 'column'=>'id'], $mapping['entities'][0]['fields'][0]); |
|
| 707 | + $this->assertEquals(['name'=>'name', 'column'=>'name'], $mapping['entities'][0]['fields'][1]); |
|
| 708 | + $this->assertEquals($personMetadata->name, $mapping['entities'][0]['entityClass']); |
|
| 709 | 709 | } |
| 710 | 710 | |
| 711 | 711 | /* |
@@ -746,7 +746,7 @@ discard block |
||
| 746 | 746 | |
| 747 | 747 | $this->assertEquals(['user_id'=>'id'], $guestGroups['relationToSourceKeyColumns']); |
| 748 | 748 | $this->assertEquals(['group_id'=>'id'], $guestGroups['relationToTargetKeyColumns']); |
| 749 | - $this->assertEquals(['user_id','group_id'], $guestGroups['joinTableColumns']); |
|
| 749 | + $this->assertEquals(['user_id', 'group_id'], $guestGroups['joinTableColumns']); |
|
| 750 | 750 | |
| 751 | 751 | |
| 752 | 752 | $this->assertEquals('ddc964_users_admingroups', $adminGroups['joinTable']['name']); |
@@ -755,7 +755,7 @@ discard block |
||
| 755 | 755 | |
| 756 | 756 | $this->assertEquals(['adminuser_id'=>'id'], $adminGroups['relationToSourceKeyColumns']); |
| 757 | 757 | $this->assertEquals(['admingroup_id'=>'id'], $adminGroups['relationToTargetKeyColumns']); |
| 758 | - $this->assertEquals(['adminuser_id','admingroup_id'], $adminGroups['joinTableColumns']); |
|
| 758 | + $this->assertEquals(['adminuser_id', 'admingroup_id'], $adminGroups['joinTableColumns']); |
|
| 759 | 759 | |
| 760 | 760 | |
| 761 | 761 | // assert address association mappings |
@@ -833,8 +833,8 @@ discard block |
||
| 833 | 833 | $this->assertTrue($adminMetadata->fieldMappings['id']['id']); |
| 834 | 834 | $this->assertEquals('id', $adminMetadata->fieldMappings['id']['fieldName']); |
| 835 | 835 | $this->assertEquals('user_id', $adminMetadata->fieldMappings['id']['columnName']); |
| 836 | - $this->assertEquals(['user_id'=>'id','user_name'=>'name'], $adminMetadata->fieldNames); |
|
| 837 | - $this->assertEquals(['id'=>'user_id','name'=>'user_name'], $adminMetadata->columnNames); |
|
| 836 | + $this->assertEquals(['user_id'=>'id', 'user_name'=>'name'], $adminMetadata->fieldNames); |
|
| 837 | + $this->assertEquals(['id'=>'user_id', 'name'=>'user_name'], $adminMetadata->columnNames); |
|
| 838 | 838 | $this->assertEquals(150, $adminMetadata->fieldMappings['id']['length']); |
| 839 | 839 | |
| 840 | 840 | |
@@ -848,8 +848,8 @@ discard block |
||
| 848 | 848 | $this->assertTrue($guestMetadata->fieldMappings['id']['id']); |
| 849 | 849 | $this->assertEquals('guest_id', $guestMetadata->fieldMappings['id']['columnName']); |
| 850 | 850 | $this->assertEquals('id', $guestMetadata->fieldMappings['id']['fieldName']); |
| 851 | - $this->assertEquals(['guest_id'=>'id','guest_name'=>'name'], $guestMetadata->fieldNames); |
|
| 852 | - $this->assertEquals(['id'=>'guest_id','name'=>'guest_name'], $guestMetadata->columnNames); |
|
| 851 | + $this->assertEquals(['guest_id'=>'id', 'guest_name'=>'name'], $guestMetadata->fieldNames); |
|
| 852 | + $this->assertEquals(['id'=>'guest_id', 'name'=>'guest_name'], $guestMetadata->columnNames); |
|
| 853 | 853 | $this->assertEquals(140, $guestMetadata->fieldMappings['id']['length']); |
| 854 | 854 | |
| 855 | 855 | $this->assertEquals('name', $guestMetadata->fieldMappings['name']['fieldName']); |
@@ -224,8 +224,8 @@ discard block |
||
| 224 | 224 | */ |
| 225 | 225 | public function transactional($func) |
| 226 | 226 | { |
| 227 | - if (!is_callable($func)) { |
|
| 228 | - throw new \InvalidArgumentException('Expected argument of type "callable", got "' . gettype($func) . '"'); |
|
| 227 | + if ( ! is_callable($func)) { |
|
| 228 | + throw new \InvalidArgumentException('Expected argument of type "callable", got "'.gettype($func).'"'); |
|
| 229 | 229 | } |
| 230 | 230 | |
| 231 | 231 | $this->conn->beginTransaction(); |
@@ -753,7 +753,7 @@ discard block |
||
| 753 | 753 | */ |
| 754 | 754 | public function isOpen() |
| 755 | 755 | { |
| 756 | - return (!$this->closed); |
|
| 756 | + return ( ! $this->closed); |
|
| 757 | 757 | } |
| 758 | 758 | |
| 759 | 759 | /** |
@@ -864,7 +864,7 @@ discard block |
||
| 864 | 864 | sprintf( |
| 865 | 865 | 'Invalid $connection argument of type %s given%s.', |
| 866 | 866 | is_object($connection) ? get_class($connection) : gettype($connection), |
| 867 | - is_object($connection) ? '' : ': "' . $connection . '"' |
|
| 867 | + is_object($connection) ? '' : ': "'.$connection.'"' |
|
| 868 | 868 | ) |
| 869 | 869 | ); |
| 870 | 870 | } |