We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 4 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
5 | class CrudObjectGroup |
||
6 | { |
||
7 | protected $objects; |
||
8 | |||
9 | /** |
||
10 | * Add CrudObjects (fields, columns etc) to the group. |
||
11 | */ |
||
12 | public function __construct(...$objects) |
||
19 | } |
||
20 | |||
21 | // ------------- |
||
22 | // MAGIC METHODS |
||
23 | // ------------- |
||
24 | |||
25 | /** |
||
26 | * We forward any call to the corresponding class passed by developer (Field, Columns, Filters etc ..). |
||
27 | */ |
||
28 | public function __call(string $method, array $parameter) |
||
37 |