-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
63 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Entity\Channel; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
use Sylius\Component\Core\Model\ShopBillingData as BaseShopBillingData; | ||
|
||
/** | ||
* @ORM\Entity | ||
* @ORM\Table(name="sylius_shop_billing_data") | ||
*/ | ||
#[ORM\Entity] | ||
#[ORM\Table(name: 'sylius_shop_billing_data')] | ||
class ShopBillingData extends BaseShopBillingData | ||
{ | ||
} |
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,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Entity\Shipping; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
use Sylius\Component\Shipping\Model\ShippingMethodRule as BaseShippingMethodRule; | ||
|
||
/** | ||
* @ORM\Entity | ||
* @ORM\Table(name="sylius_shipping_method_rule") | ||
*/ | ||
#[ORM\Entity] | ||
#[ORM\Table(name: 'sylius_shipping_method_rule')] | ||
class ShippingMethodRule extends BaseShippingMethodRule | ||
{ | ||
} |
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,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Entity\User; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
use Sylius\Component\Core\Model\AvatarImage as BaseAvatarImage; | ||
|
||
/** | ||
* @ORM\Entity | ||
* @ORM\Table(name="sylius_avatar_image") | ||
*/ | ||
#[ORM\Entity] | ||
#[ORM\Table(name: 'sylius_avatar_image')] | ||
class AvatarImage extends BaseAvatarImage | ||
{ | ||
} |