Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class BaseDoctrineController extends BaseController |
||
17 | { |
||
18 | /** |
||
19 | * saves entity to database. |
||
20 | * |
||
21 | * @param BaseEntity[] $entities |
||
22 | */ |
||
23 | protected function fastSave(...$entities) |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * removes entity to database. |
||
34 | * |
||
35 | * @param BaseEntity[] $entities |
||
36 | */ |
||
37 | protected function fastRemove(...$entities) |
||
46 |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.