1 | <?php |
||
16 | class SlotNotFoundException extends \RuntimeException |
||
17 | { |
||
18 | /** @var string */ |
||
19 | private $name; |
||
20 | |||
21 | /** @var ProductBundleInterface */ |
||
22 | private $bundle; |
||
23 | |||
24 | public function __construct( |
||
35 | |||
36 | public function getName(): string |
||
40 | |||
41 | public function getBundle(): ProductBundleInterface |
||
45 | } |
||
46 |