1 | <?php |
||
9 | class ClosureTable extends TreeStrategy implements Buildable |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private $closureClass; |
||
15 | |||
16 | /** |
||
17 | * ClosureTable constructor. |
||
18 | * |
||
19 | * @param Fluent $builder |
||
20 | * @param string $class |
||
21 | */ |
||
22 | 2 | public function __construct(Fluent $builder, $class) |
|
28 | |||
29 | /** |
||
30 | 1 | * Execute the build process |
|
31 | */ |
||
32 | public function build() |
||
38 | 1 | ||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | protected function getValues() |
||
49 | |||
50 | } |
||
51 |