Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| JourneyController | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| index | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Controllers; |
| 4 | |
| 5 | class JourneyController extends BaseController |
| 6 | { |
| 7 | public function index(): string |
| 8 | { |
| 9 | $data = service('journey')->getIndexData($this->request->getGet(), auth()->user()); |
| 10 | |
| 11 | return view('journey/index', $data); |
| 12 | } |
| 13 | } |