@@ -35,6 +35,7 @@ |
||
35 | 35 | |
36 | 36 | /** |
37 | 37 | * @param ContainerInterface|string $multilanguage |
38 | + * @param \PHPUnit_Framework_MockObject_MockObject $requestStack |
|
38 | 39 | */ |
39 | 40 | public function __construct(/*ContainerInterface|RequestStack*/ $requestStack, $multilanguage = null, $defaultLocale = null, $requiredLocales = null, AdminRouteHelper $adminRouteHelper = null, EntityManagerInterface $em = null, array $hosts = null) |
40 | 41 | { |
@@ -477,7 +477,7 @@ discard block |
||
477 | 477 | } |
478 | 478 | |
479 | 479 | /** |
480 | - * @return mixed|null |
|
480 | + * @return User|null |
|
481 | 481 | */ |
482 | 482 | protected function getUser() |
483 | 483 | { |
@@ -493,7 +493,7 @@ discard block |
||
493 | 493 | } |
494 | 494 | |
495 | 495 | /** |
496 | - * @return mixed |
|
496 | + * @return User |
|
497 | 497 | */ |
498 | 498 | protected function getAdminUser() |
499 | 499 | { |
@@ -18,6 +18,9 @@ discard block |
||
18 | 18 | } |
19 | 19 | |
20 | 20 | /** |
21 | + * @param integer $major |
|
22 | + * @param integer $minor |
|
23 | + * @param integer $patch |
|
21 | 24 | * @return bool |
22 | 25 | */ |
23 | 26 | public static function isKernelLessThan($major, $minor = null, $patch = null) |
@@ -26,6 +29,7 @@ discard block |
||
26 | 29 | } |
27 | 30 | |
28 | 31 | /** |
32 | + * @param string $operator |
|
29 | 33 | * @return bool |
30 | 34 | */ |
31 | 35 | private static function kernelVersionCompare($operator, $major, $minor = null, $patch = null) |
@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace Kunstmaan\ArticleBundle\Router; |
4 | 4 | |
5 | 5 | use Kunstmaan\NodeBundle\Router\SlugRouter; |
6 | -use Symfony\Component\Routing\Route; |
|
7 | 6 | use Symfony\Component\Routing\RouteCollection; |
8 | 7 | use Symfony\Component\Translation\TranslatorInterface; |
9 | 8 |
@@ -22,7 +22,6 @@ |
||
22 | 22 | protected $em; |
23 | 23 | |
24 | 24 | /** |
25 | - * @param EngineInterface $templating |
|
26 | 25 | * @param EntityManagerInterface $em |
27 | 26 | */ |
28 | 27 | public function __construct(/* EngineInterface|EntityManagerInterface */ $em, EntityManagerInterface $emOld = null) |
@@ -39,7 +39,6 @@ |
||
39 | 39 | |
40 | 40 | /** |
41 | 41 | * @param EntityManagerInterface|null $em |
42 | - * @param PdfTransformer|null $mediaManager |
|
43 | 42 | */ |
44 | 43 | public function __construct(/* EntityManagerInterface */ $em = null, /* PdfTransformer */ $pdfTransformer = null, $webRoot = null, $enablePdfPreview = null) |
45 | 44 | { |
@@ -49,8 +49,8 @@ |
||
49 | 49 | } |
50 | 50 | |
51 | 51 | /** |
52 | - * @param $command |
|
53 | - * @param $error |
|
52 | + * @param \Symfony\Component\Console\Command\Command $command |
|
53 | + * @param \Throwable $error |
|
54 | 54 | */ |
55 | 55 | private function logCommandError($command, $error) |
56 | 56 | { |
@@ -12,7 +12,7 @@ |
||
12 | 12 | class KunstmaanFormExtensionTest extends AbstractPrependableExtensionTestCase |
13 | 13 | { |
14 | 14 | /** |
15 | - * @return ExtensionInterface[] |
|
15 | + * @return KunstmaanFormExtension[] |
|
16 | 16 | */ |
17 | 17 | protected function getContainerExtensions() |
18 | 18 | { |
@@ -11,7 +11,6 @@ |
||
11 | 11 | * Call this method from within your test after you have (optionally) modified the ContainerBuilder for this test |
12 | 12 | * ($this->container). |
13 | 13 | * |
14 | - * @param array $specificConfiguration |
|
15 | 14 | */ |
16 | 15 | protected function load(array $configurationValues = array()) |
17 | 16 | { |