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