@@ -271,6 +271,10 @@ discard block |
||
| 271 | 271 | return $response; |
| 272 | 272 | } |
| 273 | 273 | |
| 274 | + /** |
|
| 275 | + * @param string $code |
|
| 276 | + * @param string $message |
|
| 277 | + */ |
|
| 274 | 278 | private function returnJsonError($code, $message) |
| 275 | 279 | { |
| 276 | 280 | return new JsonResponse( |
@@ -443,7 +447,7 @@ discard block |
||
| 443 | 447 | /** |
| 444 | 448 | * @Route("move/", name="KunstmaanMediaBundle_media_move", methods={"POST"}) |
| 445 | 449 | * |
| 446 | - * @return string |
|
| 450 | + * @return JsonResponse |
|
| 447 | 451 | */ |
| 448 | 452 | public function moveMedia(Request $request) |
| 449 | 453 | { |
@@ -29,6 +29,7 @@ |
||
| 29 | 29 | * Constructor. Takes the configuration of the RemoveVideoHandler |
| 30 | 30 | * |
| 31 | 31 | * @param array $configuration |
| 32 | + * @param integer $priority |
|
| 32 | 33 | */ |
| 33 | 34 | public function __construct($priority, $configuration = []) |
| 34 | 35 | { |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | /** |
| 121 | 121 | * @param int $folderId |
| 122 | 122 | * |
| 123 | - * @return object |
|
| 123 | + * @return Folder |
|
| 124 | 124 | * |
| 125 | 125 | * @throws EntityNotFoundException |
| 126 | 126 | */ |
@@ -158,6 +158,7 @@ discard block |
||
| 158 | 158 | |
| 159 | 159 | /** |
| 160 | 160 | * {@inheritdoc} |
| 161 | + * @param Folder $node |
|
| 161 | 162 | */ |
| 162 | 163 | public function getPathQueryBuilder($node) |
| 163 | 164 | { |
@@ -327,7 +328,7 @@ discard block |
||
| 327 | 328 | } |
| 328 | 329 | |
| 329 | 330 | /** |
| 330 | - * @param $parent |
|
| 331 | + * @param Folder $parent |
|
| 331 | 332 | */ |
| 332 | 333 | private function persistInOrderedTree(Folder $folder, $parent) |
| 333 | 334 | { |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | /** |
| 47 | 47 | * @Route("/", name="kunstmaanmenubundle_admin_menu") |
| 48 | 48 | * |
| 49 | - * @return array |
|
| 49 | + * @return \Symfony\Component\HttpFoundation\Response |
|
| 50 | 50 | */ |
| 51 | 51 | public function indexAction(Request $request) |
| 52 | 52 | { |
@@ -744,7 +744,7 @@ |
||
| 744 | 744 | /** |
| 745 | 745 | * @Route("/reorder", name="KunstmaanNodeBundle_nodes_reorder", methods={"POST"}) |
| 746 | 746 | * |
| 747 | - * @return string |
|
| 747 | + * @return JsonResponse |
|
| 748 | 748 | * |
| 749 | 749 | * @throws AccessDeniedException |
| 750 | 750 | */ |
@@ -47,7 +47,6 @@ |
||
| 47 | 47 | /** |
| 48 | 48 | * NodeTranslationListener constructor. |
| 49 | 49 | * |
| 50 | - * @param SessionInterface|FlashBagInterface $session |
|
| 51 | 50 | */ |
| 52 | 51 | public function __construct( |
| 53 | 52 | /* SessionInterface */ $flashBag, |
@@ -6,11 +6,23 @@ |
||
| 6 | 6 | |
| 7 | 7 | interface NodeIndexUpdateEventListenerInterface |
| 8 | 8 | { |
| 9 | + /** |
|
| 10 | + * @return void |
|
| 11 | + */ |
|
| 9 | 12 | public function onPostPublish(NodeEvent $event); |
| 10 | 13 | |
| 14 | + /** |
|
| 15 | + * @return void |
|
| 16 | + */ |
|
| 11 | 17 | public function onPostPersist(NodeEvent $event); |
| 12 | 18 | |
| 19 | + /** |
|
| 20 | + * @return void |
|
| 21 | + */ |
|
| 13 | 22 | public function onPostDelete(NodeEvent $event); |
| 14 | 23 | |
| 24 | + /** |
|
| 25 | + * @return void |
|
| 26 | + */ |
|
| 15 | 27 | public function onPostUnPublish(NodeEvent $event); |
| 16 | 28 | } |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | * |
| 51 | 51 | * @param string $name The name of the route |
| 52 | 52 | * @param mixed $parameters An array of parameters |
| 53 | - * @param bool|string $referenceType The type of reference to be generated (one of the constants) |
|
| 53 | + * @param integer $referenceType The type of reference to be generated (one of the constants) |
|
| 54 | 54 | * |
| 55 | 55 | * @return string The generated URL |
| 56 | 56 | * |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | /** |
| 131 | - * @return bool |
|
| 131 | + * @return string|false |
|
| 132 | 132 | */ |
| 133 | 133 | private function isWildcardRedirect(Redirect $redirect) |
| 134 | 134 | { |
@@ -141,6 +141,9 @@ discard block |
||
| 141 | 141 | return false; |
| 142 | 142 | } |
| 143 | 143 | |
| 144 | + /** |
|
| 145 | + * @param string $matchSegment |
|
| 146 | + */ |
|
| 144 | 147 | private function isPathInfoWildcardMatch($matchSegment) |
| 145 | 148 | { |
| 146 | 149 | $path = $this->context->getPathInfo(); |
@@ -8,6 +8,7 @@ |
||
| 8 | 8 | * Add a SearchProvider to the chain |
| 9 | 9 | * |
| 10 | 10 | * @param string $alias |
| 11 | + * @return void |
|
| 11 | 12 | */ |
| 12 | 13 | public function addProvider(SearchProviderInterface $provider, $alias); |
| 13 | 14 | |