@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | * @Route("/{menuid}/items/add", name="kunstmaanmenubundle_admin_menuitem_add") |
| 105 | 105 | * @Method({"GET", "POST"}) |
| 106 | 106 | * |
| 107 | - * @return array |
|
| 107 | + * @return Response |
|
| 108 | 108 | */ |
| 109 | 109 | public function addAction(Request $request, $menuid) |
| 110 | 110 | { |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | * @Route("{menuid}/items/{id}/edit", requirements={"id" = "\d+"}, name="kunstmaanmenubundle_admin_menuitem_edit") |
| 120 | 120 | * @Method({"GET", "POST"}) |
| 121 | 121 | * |
| 122 | - * @return array |
|
| 122 | + * @return Response |
|
| 123 | 123 | */ |
| 124 | 124 | public function editAction(Request $request, $menuid, $id) |
| 125 | 125 | { |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | * @Route("{menuid}/items/{id}/delete", requirements={"id" = "\d+"}, name="kunstmaanmenubundle_admin_menuitem_delete") |
| 135 | 135 | * @Method({"GET", "POST"}) |
| 136 | 136 | * |
| 137 | - * @return array |
|
| 137 | + * @return Response |
|
| 138 | 138 | */ |
| 139 | 139 | public function deleteAction(Request $request, $menuid, $id) |
| 140 | 140 | { |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | /** |
| 49 | - * @param object $object |
|
| 49 | + * @param null|\Kunstmaan\NodeBundle\Entity\Node $object |
|
| 50 | 50 | * |
| 51 | 51 | * Create ACL permissions for an object |
| 52 | 52 | */ |
@@ -169,7 +169,7 @@ |
||
| 169 | 169 | /** |
| 170 | 170 | * Get pagePartId |
| 171 | 171 | * |
| 172 | - * @return int |
|
| 172 | + * @return string |
|
| 173 | 173 | */ |
| 174 | 174 | public function getPagePartId() |
| 175 | 175 | { |
@@ -9,6 +9,9 @@ |
||
| 9 | 9 | */ |
| 10 | 10 | interface HasPagePartsInterface |
| 11 | 11 | { |
| 12 | + /** |
|
| 13 | + * @return integer |
|
| 14 | + */ |
|
| 12 | 15 | public function getId(); |
| 13 | 16 | |
| 14 | 17 | /** |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | * A Node instance or the internal name. |
| 74 | 74 | * When the internal name is passed we'll get the node instance. |
| 75 | 75 | * Based on the language we'll locate the correct Page instance. |
| 76 | - * @param pagePartInterface $pagePart |
|
| 76 | + * @param PagePartInterface $pagePart |
|
| 77 | 77 | * A completely configured pagepart for this language |
| 78 | 78 | * @param string $language |
| 79 | 79 | * The languagecode. nl|fr|en|.. . Just one. |
@@ -203,7 +203,7 @@ discard block |
||
| 203 | 203 | * @param string $pagePartClassName the full class name of the pagepart you want to instantiate |
| 204 | 204 | * @param array $setters An array of setternames and their values. array('setName' => 'Kim', 'isDeveloper' => true) |
| 205 | 205 | * |
| 206 | - * @return callable the function that will instantiate a pagepart |
|
| 206 | + * @return \Closure the function that will instantiate a pagepart |
|
| 207 | 207 | */ |
| 208 | 208 | public function getCreatorArgumentsForPagePartAndProperties($pagePartClassName, array $setters = null) |
| 209 | 209 | { |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | private $usesExtendedPagePartChooser = false; |
| 13 | 13 | |
| 14 | 14 | /** |
| 15 | - * @return array |
|
| 15 | + * @return \Twig_SimpleFunction[] |
|
| 16 | 16 | */ |
| 17 | 17 | public function getFunctions() |
| 18 | 18 | { |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | /** |
| 62 | 62 | * Get usesExtendedPagePartChooser. |
| 63 | 63 | * |
| 64 | - * @return usesExtendedPagePartChooser |
|
| 64 | + * @return boolean |
|
| 65 | 65 | */ |
| 66 | 66 | public function getUsesExtendedPagePartChooser() |
| 67 | 67 | { |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | * |
| 55 | 55 | * @param string $name The name of the route |
| 56 | 56 | * @param mixed $parameters An array of parameters |
| 57 | - * @param bool|string $referenceType The type of reference to be generated (one of the constants) |
|
| 57 | + * @param integer $referenceType The type of reference to be generated (one of the constants) |
|
| 58 | 58 | * |
| 59 | 59 | * @return string The generated URL |
| 60 | 60 | * |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | /** |
| 140 | 140 | * @param Redirect $redirect |
| 141 | 141 | * |
| 142 | - * @return bool |
|
| 142 | + * @return string|false |
|
| 143 | 143 | */ |
| 144 | 144 | private function isWildcardRedirect(Redirect $redirect) |
| 145 | 145 | { |
@@ -152,6 +152,9 @@ discard block |
||
| 152 | 152 | return false; |
| 153 | 153 | } |
| 154 | 154 | |
| 155 | + /** |
|
| 156 | + * @param string $matchSegment |
|
| 157 | + */ |
|
| 155 | 158 | private function isPathInfoWildcardMatch($matchSegment) |
| 156 | 159 | { |
| 157 | 160 | $path = $this->context->getPathInfo(); |
@@ -56,6 +56,7 @@ |
||
| 56 | 56 | * @param string $origin |
| 57 | 57 | * @param string $target |
| 58 | 58 | * @param bool $permanent |
| 59 | + * @param null|string $domain |
|
| 59 | 60 | * |
| 60 | 61 | * @return Redirect |
| 61 | 62 | */ |
@@ -58,6 +58,7 @@ |
||
| 58 | 58 | |
| 59 | 59 | /** |
| 60 | 60 | * {@inheritdoc} |
| 61 | + * @param string $indexName |
|
| 61 | 62 | */ |
| 62 | 63 | public function getIndex($indexName) |
| 63 | 64 | { |