Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | 8 | public function deleteCategory($catID) |
|
31 | { |
||
32 | try |
||
33 | { |
||
34 | 8 | SystemCategories::findOrFail($catID)->delete(); |
|
35 | 4 | return true; |
|
36 | } |
||
37 | 4 | catch(\Illuminate\Database\QueryException $e) |
|
38 | { |
||
39 | 4 | Log::warning('An attempt to delete Equipment Category ID '.$catID.' failed. Reason - ', array($e)); |
|
40 | 4 | return false; |
|
41 | } |
||
44 |