| 1 | <?php |
||
| 7 | trait HasSpecifications |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Instance of Specifications. |
||
| 11 | * |
||
| 12 | * @var \Pbmedia\Specifications\Interfaces\Specifications |
||
| 13 | */ |
||
| 14 | protected $specifications; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Creates a new Specifications object if non exists |
||
| 18 | * and returns it. |
||
| 19 | * |
||
| 20 | * @return \Pbmedia\Specifications\Specifications |
||
| 21 | */ |
||
| 22 | public function specifications(): SpecificationsInterface |
||
| 30 | } |
||
| 31 |