-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug #806 Add missing overridden Catalog Promotions-related models (Za…
…les0123) This PR was merged into the 1.11 branch. Discussion ---------- They should've been added just after the 1.11.0 release 💃 Commits ------- 2064d47 Add missing overridden Catalog Promotions-related models
- Loading branch information
Showing
5 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Entity\Promotion; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
use Sylius\Component\Core\Model\CatalogPromotion as BaseCatalogPromotion; | ||
|
||
/** | ||
* @ORM\Entity | ||
* @ORM\Table(name="sylius_catalog_promotion") | ||
*/ | ||
class CatalogPromotion extends BaseCatalogPromotion | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Entity\Promotion; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
use Sylius\Component\Promotion\Model\CatalogPromotionAction as BaseCatalogPromotionAction; | ||
|
||
/** | ||
* @ORM\Entity | ||
* @ORM\Table(name="sylius_catalog_promotion_action") | ||
*/ | ||
class CatalogPromotionAction extends BaseCatalogPromotionAction | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Entity\Promotion; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
use Sylius\Component\Core\Model\CatalogPromotionScope as BaseCatalogPromotionScope; | ||
|
||
/** | ||
* @ORM\Entity | ||
* @ORM\Table(name="sylius_catalog_promotion_scope") | ||
*/ | ||
class CatalogPromotionScope extends BaseCatalogPromotionScope | ||
{ | ||
} |