Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | class GreetController |
||
14 | { |
||
15 | /** |
||
16 | * Greets a specified name. |
||
17 | * |
||
18 | * @return string |
||
19 | */ |
||
20 | 6 | public function greet($name = 'Stranger') |
|
21 | { |
||
22 | 6 | $data = array('name' => (string) $name); |
|
23 | |||
24 | 6 | return View::render('greet', $data); |
|
|
|||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Shouts the specified name. |
||
29 | * |
||
30 | * @return string |
||
31 | */ |
||
32 | 3 | public function scream() |
|
35 | } |
||
36 | } |
||
37 |