@@ -369,7 +369,7 @@ discard block |
||
| 369 | 369 | |
| 370 | 370 | public function addDisabledVariant(VariantInterface $variant) : ProductInterface |
| 371 | 371 | { |
| 372 | - if(!$this->disabledVariants->contains($variant)) { |
|
| 372 | + if (!$this->disabledVariants->contains($variant)) { |
|
| 373 | 373 | $this->disabledVariants->add($variant); |
| 374 | 374 | } |
| 375 | 375 | |
@@ -378,7 +378,7 @@ discard block |
||
| 378 | 378 | |
| 379 | 379 | public function addMedium(MediumInterface $medium) : ProductInterface |
| 380 | 380 | { |
| 381 | - if(!$this->media->contains($medium)) { |
|
| 381 | + if (!$this->media->contains($medium)) { |
|
| 382 | 382 | $this->media->add($medium); |
| 383 | 383 | } |
| 384 | 384 | |
@@ -387,7 +387,7 @@ discard block |
||
| 387 | 387 | |
| 388 | 388 | public function addCategory(CategoryInterface $category) : ProductInterface |
| 389 | 389 | { |
| 390 | - if(!$this->categories->contains($category)) { |
|
| 390 | + if (!$this->categories->contains($category)) { |
|
| 391 | 391 | $this->categories->add($category); |
| 392 | 392 | } |
| 393 | 393 | |
@@ -396,7 +396,7 @@ discard block |
||
| 396 | 396 | |
| 397 | 397 | public function addManufacturer(ManufacturerInterface $manufacturer) : ProductInterface |
| 398 | 398 | { |
| 399 | - if(!$this->manufacturers->exists(function($key, ManufacturerInterface $element) use ($manufacturer) { |
|
| 399 | + if (!$this->manufacturers->exists(function($key, ManufacturerInterface $element) use ($manufacturer) { |
|
| 400 | 400 | return $element->getExternalId() === $manufacturer->getExternalId(); |
| 401 | 401 | })) { |
| 402 | 402 | $this->manufacturers->add($manufacturer); |
@@ -412,7 +412,7 @@ discard block |
||
| 412 | 412 | |
| 413 | 413 | public function addPrice(PriceInterface $price) : ProductInterface |
| 414 | 414 | { |
| 415 | - if(!$this->prices->contains($price)) { |
|
| 415 | + if (!$this->prices->contains($price)) { |
|
| 416 | 416 | $this->prices->add($price); |
| 417 | 417 | } |
| 418 | 418 | |
@@ -421,7 +421,7 @@ discard block |
||
| 421 | 421 | |
| 422 | 422 | public function addProductRelation(ProductRelationInterface $productRelation) : ProductInterface |
| 423 | 423 | { |
| 424 | - if(!$this->productRelations->contains($productRelation)) { |
|
| 424 | + if (!$this->productRelations->contains($productRelation)) { |
|
| 425 | 425 | $this->productRelations->add($productRelation); |
| 426 | 426 | } |
| 427 | 427 | |
@@ -430,7 +430,7 @@ discard block |
||
| 430 | 430 | |
| 431 | 431 | public function addSegment(SegmentInterface $segment) : ProductInterface |
| 432 | 432 | { |
| 433 | - if(!$this->segments->contains($segment)) { |
|
| 433 | + if (!$this->segments->contains($segment)) { |
|
| 434 | 434 | $this->segments->add($segment); |
| 435 | 435 | } |
| 436 | 436 | |
@@ -439,7 +439,7 @@ discard block |
||
| 439 | 439 | |
| 440 | 440 | public function addVariant(VariantInterface $variant) : ProductInterface |
| 441 | 441 | { |
| 442 | - if(!$this->variants->contains($variant)) { |
|
| 442 | + if (!$this->variants->contains($variant)) { |
|
| 443 | 443 | $this->variants->add($variant); |
| 444 | 444 | } |
| 445 | 445 | |
@@ -448,7 +448,7 @@ discard block |
||
| 448 | 448 | |
| 449 | 449 | public function addVariantGroup(VariantGroupInterface $variantGroup) : ProductInterface |
| 450 | 450 | { |
| 451 | - if(!$this->variantGroups->contains($variantGroup)) { |
|
| 451 | + if (!$this->variantGroups->contains($variantGroup)) { |
|
| 452 | 452 | $this->variantGroups->add($variantGroup); |
| 453 | 453 | } |
| 454 | 454 | |
@@ -514,7 +514,7 @@ discard block |
||
| 514 | 514 | ->setWeight($data['weight']) |
| 515 | 515 | ; |
| 516 | 516 | |
| 517 | - if($populateEmbedded) { |
|
| 517 | + if ($populateEmbedded) { |
|
| 518 | 518 | /* |
| 519 | 519 | * @todo outcomment this and fix it |
| 520 | 520 | */ |
@@ -699,7 +699,7 @@ discard block |
||
| 699 | 699 | */ |
| 700 | 700 | public function getId(): int |
| 701 | 701 | { |
| 702 | - return (int)$this->id; |
|
| 702 | + return (int) $this->id; |
|
| 703 | 703 | } |
| 704 | 704 | |
| 705 | 705 | /** |
@@ -717,7 +717,7 @@ discard block |
||
| 717 | 717 | */ |
| 718 | 718 | public function getExternalId(): int |
| 719 | 719 | { |
| 720 | - return (int)$this->externalId; |
|
| 720 | + return (int) $this->externalId; |
|
| 721 | 721 | } |
| 722 | 722 | |
| 723 | 723 | /** |