mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 23:56:14 +01:00
[CLEANUP] PHP strict mode
This commit is contained in:
parent
f4d5287239
commit
5335064e80
1 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace OliverKlee\Tea\Controller;
|
namespace OliverKlee\Tea\Controller;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -55,7 +57,8 @@ class TestimonialController extends ActionController
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function showAction(Testimonial $testimonial) {
|
public function showAction(Testimonial $testimonial)
|
||||||
|
{
|
||||||
$this->view->assign('testimonial', $testimonial);
|
$this->view->assign('testimonial', $testimonial);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue