@@ -31,7 +31,7 @@ |
||
| 31 | 31 | private $tokenStorage; |
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | - * @param ContainerInterface|TokenStorageInterface $tokenStorage |
|
| 34 | + * @param \PHPUnit\Framework\MockObject\MockObject $tokenStorage |
|
| 35 | 35 | */ |
| 36 | 36 | public function __construct(/*TokenStorageInterface */ $tokenStorage) |
| 37 | 37 | { |
@@ -62,7 +62,7 @@ |
||
| 62 | 62 | /** |
| 63 | 63 | * The constructor for this service |
| 64 | 64 | * |
| 65 | - * @param ContainerInterface $container |
|
| 65 | + * @param \PHPUnit\Framework\MockObject\MockObject $domainConfiguration |
|
| 66 | 66 | */ |
| 67 | 67 | public function __construct( |
| 68 | 68 | /* DomainConfigurationInterface */ $domainConfiguration, |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | /** |
| 33 | - * @param mixed $clonedEntity |
|
| 33 | + * @param \stdClass $clonedEntity |
|
| 34 | 34 | * |
| 35 | 35 | * @return DeepCloneAndSaveEvent |
| 36 | 36 | */ |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | - * @param mixed $entity |
|
| 53 | + * @param \stdClass $entity |
|
| 54 | 54 | * |
| 55 | 55 | * @return DeepCloneAndSaveEvent |
| 56 | 56 | */ |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | - * @param mixed $node |
|
| 29 | + * @param \Kunstmaan\NodeBundle\Entity\Node $node |
|
| 30 | 30 | */ |
| 31 | 31 | public function setNode($node) |
| 32 | 32 | { |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | /** |
| 47 | - * @param mixed $nodeTranslation |
|
| 47 | + * @param \Kunstmaan\NodeBundle\Entity\NodeTranslation $nodeTranslation |
|
| 48 | 48 | */ |
| 49 | 49 | public function setNodeTranslation($nodeTranslation) |
| 50 | 50 | { |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | /** |
| 83 | - * @param mixed $request |
|
| 83 | + * @param \Symfony\Component\HttpFoundation\Request $request |
|
| 84 | 84 | */ |
| 85 | 85 | public function setRequest($request) |
| 86 | 86 | { |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | class MediaTokenTransformer implements DataTransformerInterface |
| 12 | 12 | { |
| 13 | 13 | /** |
| 14 | - * @param mixed $content |
|
| 14 | + * @param string $content |
|
| 15 | 15 | * |
| 16 | 16 | * @return string |
| 17 | 17 | */ |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | /** |
| 47 | - * @param mixed $content |
|
| 47 | + * @param string $content |
|
| 48 | 48 | * |
| 49 | 49 | * @return string |
| 50 | 50 | */ |
@@ -41,7 +41,7 @@ |
||
| 41 | 41 | * @Route("/add", name="kunstmaantaggingbundle_admin_tag_add", methods={"GET", "POST"}) |
| 42 | 42 | * @Template("@KunstmaanAdminList/Default/add.html.twig") |
| 43 | 43 | * |
| 44 | - * @return array |
|
| 44 | + * @return \Symfony\Component\HttpFoundation\Response |
|
| 45 | 45 | */ |
| 46 | 46 | public function addAction(Request $request) |
| 47 | 47 | { |
@@ -10,7 +10,6 @@ |
||
| 10 | 10 | use Symfony\Component\Form\FormEvent; |
| 11 | 11 | use Symfony\Component\Form\FormEvents; |
| 12 | 12 | use Symfony\Component\Validator\Constraints\Email; |
| 13 | -use Symfony\Component\Validator\Constraints\Url; |
|
| 14 | 13 | |
| 15 | 14 | class URLChooserFormSubscriber implements EventSubscriberInterface |
| 16 | 15 | { |
@@ -9,7 +9,6 @@ |
||
| 9 | 9 | use Symfony\Component\Form\FormEvent; |
| 10 | 10 | use Symfony\Component\Form\FormEvents; |
| 11 | 11 | use Symfony\Component\Validator\Constraints\Email; |
| 12 | -use Symfony\Component\Validator\Constraints\Url; |
|
| 13 | 12 | |
| 14 | 13 | /** |
| 15 | 14 | * Class URLChooserLinkTypeSubscriber |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | /** |
| 61 | 61 | * onKernelRequest |
| 62 | 62 | * |
| 63 | - * @param GetResponseEvent|ResponseEvent $event |
|
| 63 | + * @param \PHPUnit\Framework\MockObject\MockObject $event |
|
| 64 | 64 | */ |
| 65 | 65 | public function onKernelRequest($event) |
| 66 | 66 | { |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | |
| 85 | 85 | /** |
| 86 | 86 | * @param TokenInterface $token |
| 87 | - * @param $providerKey |
|
| 87 | + * @param string $providerKey |
|
| 88 | 88 | * |
| 89 | 89 | * @return bool |
| 90 | 90 | */ |