1 | <?php namespace Anomaly\AddonsModule\Addon\Table; |
||
12 | class AddonTableBuilder extends TableBuilder |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * The addon type to list. |
||
17 | * |
||
18 | * @var null|string |
||
19 | */ |
||
20 | protected $type = null; |
||
21 | |||
22 | /** |
||
23 | * Get the type. |
||
24 | * |
||
25 | * @return null|string |
||
26 | */ |
||
27 | public function getType() |
||
31 | |||
32 | /** |
||
33 | * Set the type. |
||
34 | * |
||
35 | * @param $type |
||
36 | * @return $this |
||
37 | */ |
||
38 | public function setType($type) |
||
44 | } |
||
45 |