mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:56:13 +02:00

[CLEANUP] PHP strict mode

This commit is contained in:
Oliver Klee 2017-12-09 18:34:15 +01:00
parent f4d5287239
commit 5335064e80

View file

@ -1,4 +1,6 @@
<?php
declare(strict_types=1);
namespace OliverKlee\Tea\Controller;
/*
@ -55,7 +57,8 @@ class TestimonialController extends ActionController
*
* @return void
*/
public function showAction(Testimonial $testimonial) {
public function showAction(Testimonial $testimonial)
{
$this->view->assign('testimonial', $testimonial);
}
}