Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 3 |
| App\Controllers\ThankYouViewController | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
| thankYouTemplateAction | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
| <?php | |
| namespace App\Controllers; | |
| use \Core\View; | |
| class ThankYouViewController extends \Core\Controller { | |
| /** | |
| * Show the ThankYou page | |
| * | |
| * @return void | |
| */ | |
| public function thankYouTemplateAction() { | |
| View::renderTemplate('thankYouTemplate.twig', array("function" => "Danke", | |
| "do" => "Kauf mehr.")); | |
| } | |
| } |