This file contains hidden or 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
| <?php | |
| namespace Spryker\Zed\Discount\Business\Calculator; | |
| class Discount implements DiscountInterface | |
| { | |
| /** | |
| * @var \Spryker\Zed\Discount\Persistence\DiscountQueryContainerInterface | |
| */ | |
| protected $queryContainer; |
This file contains hidden or 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
| <?php | |
| class ProductManager implements ProductManagerInterface | |
| { | |
| /** | |
| * @var \Spryker\Zed\Product\Persistence\ProductQueryContainerInterface | |
| */ | |
| protected $productQueryContainer; |
This file contains hidden or 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
| <?php | |
| namespace Pyz\Client\Glossary; | |
| use Pyz\Client\Kernel\AbstractFactory; | |
| class GlossaryFactory extends AbstractFactory | |
| { | |
| } |
NewerOlder