| Total Complexity | 6 |
| Total Lines | 44 |
| Duplicated Lines | 0 % |
| Coverage | 95.45% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class UserController extends Controller |
||
| 9 | { |
||
| 10 | protected $userTableService; |
||
| 11 | |||
| 12 | 3 | public function __construct(UserTableService $userTableService) |
|
| 13 | { |
||
| 14 | 3 | $this->userTableService = $userTableService; |
|
| 15 | 3 | } |
|
| 16 | |||
| 17 | 2 | public function index() |
|
| 37 | } |
||
| 38 | |||
| 39 | 1 | public function delete($objectId) |
|
| 54 |