Total Complexity | 4 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
23 | abstract class FluentModel extends CleanModel |
||
24 | { |
||
25 | // Public Methods |
||
26 | // ========================================================================= |
||
27 | |||
28 | /** |
||
29 | * Add fluent getters/setters for this class |
||
30 | * |
||
31 | * @param string $method The method name (property name) |
||
32 | * @param array $args The arguments list |
||
33 | * |
||
34 | * @return mixed The value of the property |
||
35 | */ |
||
36 | public function __call($method, $args) |
||
63 |