| 1 | <?php namespace Arcanedev\LaravelHtml; |
||
| 13 | abstract class AbstractBuilder |
||
| 14 | { |
||
| 15 | /* ----------------------------------------------------------------- |
||
| 16 | | Traits |
||
| 17 | | ----------------------------------------------------------------- |
||
| 18 | */ |
||
| 19 | |||
| 20 | use Macroable, Componentable { |
||
| 21 | Macroable::__call as macroCall; |
||
| 22 | Componentable::__call as componentCall; |
||
| 23 | } |
||
| 24 | |||
| 25 | /* ----------------------------------------------------------------- |
||
| 26 | | Main Methods |
||
| 27 | | ----------------------------------------------------------------- |
||
| 28 | */ |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Dynamically handle calls to the class. |
||
| 32 | * |
||
| 33 | * @param string $method |
||
| 34 | * @param array $parameters |
||
| 35 | * |
||
| 36 | * @return mixed |
||
| 37 | * |
||
| 38 | * @throws \BadMethodCallException |
||
| 39 | */ |
||
| 40 | 4 | public function __call($method, $parameters) |
|
| 51 | } |
||
| 52 |