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