Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| controller | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| handle | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace foo\foo\controller; |
| 4 | |
| 5 | use Symfony\Component\HttpFoundation\Response; |
| 6 | |
| 7 | class controller |
| 8 | { |
| 9 | public function handle() |
| 10 | { |
| 11 | return new Response('foo/foo controller handle() method', 200); |
| 12 | } |
| 13 | } |