| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | abstract class Base |
||
| 21 | extends \Aimeos\MShop\Rule\Provider\Base |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Initializes the object instance |
||
| 25 | * |
||
| 26 | * PHP 7 fails with a wierd fatal error that decorator constructors must be |
||
| 27 | * compatible with the constructor of the factory interface if this |
||
| 28 | * intermediate constructor isn't implemented! |
||
| 29 | * |
||
| 30 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object with required objects |
||
| 31 | * @param \Aimeos\MShop\Rule\Item\Iface $item Rule item object |
||
| 32 | */ |
||
| 33 | public function __construct( \Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Rule\Item\Iface $item ) |
||
| 38 |