1 | <?php |
||
14 | class Builder extends AbstractBuilder implements Fluent |
||
15 | { |
||
16 | use Traits\Fields; |
||
17 | use Traits\Dates; |
||
18 | use Traits\Aliases; |
||
19 | use Traits\Relations; |
||
20 | use Traits\Constraints; |
||
21 | use Traits\Macroable; |
||
22 | use Traits\Queueable; |
||
23 | use Traits\QueuesMacros; |
||
24 | use GedmoBuilderHints; |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public function table($name, callable $callback = null) |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | public function entity(callable $callback = null) |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public function inheritance($type, callable $callback = null) |
||
65 | |||
66 | /** |
||
67 | * {@inheritdoc} |
||
68 | */ |
||
69 | public function singleTableInheritance(callable $callback = null) |
||
73 | |||
74 | /** |
||
75 | * {@inheritdoc} |
||
76 | */ |
||
77 | public function joinedTableInheritance(callable $callback = null) |
||
81 | |||
82 | /** |
||
83 | * {@inheritdoc} |
||
84 | */ |
||
85 | public function embed($embeddable, $field = null, callable $callback = null) |
||
98 | |||
99 | /** |
||
100 | * {@inheritdoc} |
||
101 | */ |
||
102 | public function override($name, callable $callback) |
||
115 | |||
116 | /** |
||
117 | * {@inheritdoc} |
||
118 | */ |
||
119 | public function events(callable $callback = null) |
||
127 | |||
128 | /** |
||
129 | * {@inheritdoc} |
||
130 | */ |
||
131 | public function isEmbeddedClass() |
||
135 | |||
136 | /** |
||
137 | * @param string $name |
||
138 | * @param callable|null $callback |
||
139 | * |
||
140 | * @return Field |
||
141 | */ |
||
142 | protected function setArray($name, callable $callback = null) |
||
146 | |||
147 | /** |
||
148 | * @param string $method |
||
149 | * @param array $params |
||
150 | * |
||
151 | * @return mixed |
||
152 | */ |
||
153 | public function __call($method, $params) |
||
166 | |||
167 | /** |
||
168 | * {@inheritdoc} |
||
169 | */ |
||
170 | protected function disallowInEmbeddedClasses($message = "") |
||
176 | } |
||
177 |