1 | <?php |
||
16 | class SlotNotFoundException extends \RuntimeException |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $name; |
||
22 | |||
23 | /** |
||
24 | * @var ProductBundleInterface |
||
25 | */ |
||
26 | private $bundle; |
||
27 | |||
28 | public function __construct( |
||
39 | |||
40 | public function getName(): string |
||
44 | |||
45 | public function getBundle(): ProductBundleInterface |
||
49 | } |
||
50 |