@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | /** |
| 60 | 60 | * Return the url to edit the given $item |
| 61 | 61 | * |
| 62 | - * @param object $item |
|
| 62 | + * @param \Kunstmaan\LeadGenerationBundle\Tests\unit\Entity\Popup\Popup $item |
|
| 63 | 63 | * |
| 64 | 64 | * @return array |
| 65 | 65 | */ |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | /** |
| 78 | 78 | * Get the delete url for the given $item |
| 79 | 79 | * |
| 80 | - * @param object $item |
|
| 80 | + * @param \Kunstmaan\LeadGenerationBundle\Tests\unit\Entity\Popup\Popup $item |
|
| 81 | 81 | * |
| 82 | 82 | * @return array |
| 83 | 83 | */ |
@@ -381,6 +381,9 @@ discard block |
||
| 381 | 381 | return $request; |
| 382 | 382 | } |
| 383 | 383 | |
| 384 | + /** |
|
| 385 | + * @param string $uri |
|
| 386 | + */ |
|
| 384 | 387 | private function getRequestWithOverride($uri) |
| 385 | 388 | { |
| 386 | 389 | $session = new Session(new MockArraySessionStorage()); |
@@ -394,6 +397,9 @@ discard block |
||
| 394 | 397 | return $request; |
| 395 | 398 | } |
| 396 | 399 | |
| 400 | + /** |
|
| 401 | + * @param Request $request |
|
| 402 | + */ |
|
| 397 | 403 | private function getDomainConfiguration($request) |
| 398 | 404 | { |
| 399 | 405 | $hostMap = array( |
@@ -12,6 +12,9 @@ |
||
| 12 | 12 | |
| 13 | 13 | class ExceptionController extends AdminListController |
| 14 | 14 | { |
| 15 | + /** |
|
| 16 | + * @return \Kunstmaan\AdminListBundle\AdminList\Configurator\AbstractAdminListConfigurator |
|
| 17 | + */ |
|
| 15 | 18 | private function getAdminListConfigurator() |
| 16 | 19 | { |
| 17 | 20 | if (!isset($this->configurator)) { |
@@ -27,9 +27,9 @@ |
||
| 27 | 27 | /** |
| 28 | 28 | * Setter to check if we can display all form fields |
| 29 | 29 | * |
| 30 | - * @param $canEditAllFields |
|
| 30 | + * @param boolean $canEditAllFields |
|
| 31 | 31 | * |
| 32 | - * @return bool |
|
| 32 | + * @return boolean|null |
|
| 33 | 33 | */ |
| 34 | 34 | public function setCanEditAllFields($canEditAllFields) |
| 35 | 35 | { |
@@ -14,16 +14,19 @@ |
||
| 14 | 14 | { |
| 15 | 15 | /** |
| 16 | 16 | * @param FormBuilderInterface $builder The form builder |
| 17 | + * @return void |
|
| 17 | 18 | */ |
| 18 | 19 | public function buildForm(FormBuilderInterface $builder); |
| 19 | 20 | |
| 20 | 21 | /** |
| 21 | 22 | * @param Request $request |
| 23 | + * @return void |
|
| 22 | 24 | */ |
| 23 | 25 | public function bindRequest(Request $request); |
| 24 | 26 | |
| 25 | 27 | /** |
| 26 | 28 | * @param EntityManager $em The entity manager |
| 29 | + * @return void |
|
| 27 | 30 | */ |
| 28 | 31 | public function persist(EntityManager $em); |
| 29 | 32 | |
@@ -38,6 +38,7 @@ |
||
| 38 | 38 | |
| 39 | 39 | /** |
| 40 | 40 | * {@inheritdoc} |
| 41 | + * @param string $email |
|
| 41 | 42 | */ |
| 42 | 43 | public function getOrCreateUser($email, $googleId) |
| 43 | 44 | { |
@@ -26,6 +26,8 @@ |
||
| 26 | 26 | |
| 27 | 27 | /** |
| 28 | 28 | * {@inheritdoc} |
| 29 | + * @param string $email |
|
| 30 | + * @param integer $googleId |
|
| 29 | 31 | */ |
| 30 | 32 | public function findUserByGoogleSignInData($email, $googleId) |
| 31 | 33 | { |
@@ -29,7 +29,7 @@ |
||
| 29 | 29 | private $template; |
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | - * @param array $url The url path and parameters |
|
| 32 | + * @param string[] $url The url path and parameters |
|
| 33 | 33 | * @param string $label The label |
| 34 | 34 | * @param string $icon The icon |
| 35 | 35 | * @param string $template The template |
@@ -133,7 +133,7 @@ |
||
| 133 | 133 | /** |
| 134 | 134 | * Return an iterator for all items that matches the current filtering |
| 135 | 135 | * |
| 136 | - * @return \Iterator |
|
| 136 | + * @return Statement |
|
| 137 | 137 | */ |
| 138 | 138 | public function getIterator() |
| 139 | 139 | { |