| Total Complexity | 1 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class FilesystemEntitiesController extends BaseController |
||
| 22 | { |
||
| 23 | /* |
||
| 24 | * fields we accept to create |
||
| 25 | * |
||
| 26 | * @var array |
||
| 27 | */ |
||
| 28 | protected $createFields = ['id', 'filesystem_id', 'entity_id', 'system_modules_id', 'companies_id', 'field_name', 'created_at']; |
||
| 29 | |||
| 30 | /* |
||
| 31 | * fields we accept to create |
||
| 32 | * |
||
| 33 | * @var array |
||
| 34 | */ |
||
| 35 | protected $updateFields = ['id', 'filesystem_id', 'entity_id', 'system_modules_id', 'companies_id', 'field_name', 'created_at']; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * set objects. |
||
| 39 | * |
||
| 40 | * @return void |
||
| 41 | */ |
||
| 42 | public function onConstruct() |
||
| 53 |