@@ -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->contains($manufacturer)) { |
|
| 399 | + if (!$this->manufacturers->contains($manufacturer)) { |
|
| 400 | 400 | $this->manufacturers->add($manufacturer); |
| 401 | 401 | } |
| 402 | 402 | |
@@ -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 | |
@@ -695,7 +695,7 @@ discard block |
||
| 695 | 695 | */ |
| 696 | 696 | public function getId(): int |
| 697 | 697 | { |
| 698 | - return (int)$this->id; |
|
| 698 | + return (int) $this->id; |
|
| 699 | 699 | } |
| 700 | 700 | |
| 701 | 701 | /** |
@@ -713,7 +713,7 @@ discard block |
||
| 713 | 713 | */ |
| 714 | 714 | public function getExternalId(): int |
| 715 | 715 | { |
| 716 | - return (int)$this->externalId; |
|
| 716 | + return (int) $this->externalId; |
|
| 717 | 717 | } |
| 718 | 718 | |
| 719 | 719 | /** |