Completed
Push — feature/EVO-4410-username-id-t... ( 17529a...fedcd7 )
by
unknown
09:56
created
src/Graviton/SchemaBundle/Listener/SchemaContentTypeResponseListener.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     private $router;
26 26
 
27 27
     /**
28
-     * @param router $router router
28
+     * @param Router $router router
29 29
      */
30 30
     public function __construct(Router $router)
31 31
     {
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      *
41 41
      * @param FilterResponseEvent $event response event
42 42
      *
43
-     * @return void
43
+     * @return null|boolean
44 44
      */
45 45
     public function onKernelResponse(FilterResponseEvent $event)
46 46
     {
Please login to merge, or discard this patch.
src/Graviton/SecurityBundle/Voter/ServiceAllowedVoter.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     /**
19 19
      * Return an array of supported classes. This will be called by supportsClass
20 20
      *
21
-     * @return array an array of supported classes, i.e. array('Acme\DemoBundle\Model\Product')
21
+     * @return string[] an array of supported classes, i.e. array('Acme\DemoBundle\Model\Product')
22 22
      */
23 23
     protected function getSupportedClasses()
24 24
     {
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     /**
32 32
      * Return an array of supported attributes. This will be called by supportsAttribute
33 33
      *
34
-     * @return array an array of supported attributes, i.e. array('CREATE', 'READ')
34
+     * @return string[] an array of supported attributes, i.e. array('CREATE', 'READ')
35 35
      */
36 36
     protected function getSupportedAttributes()
37 37
     {
Please login to merge, or discard this patch.
src/Graviton/RestBundle/Controller/RestController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -713,7 +713,7 @@
 block discarded – undo
713 713
     /**
714 714
      * Security needs to be enabled to get Object.
715 715
      *
716
-     * @return SecurityUser
716
+     * @return UserInterface
717 717
      * @throws PreconditionRequiredHttpException
718 718
      */
719 719
     public function getSecurityUser()
Please login to merge, or discard this patch.
src/Graviton/SwaggerBundle/Controller/SwaggerController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     }
40 40
 
41 41
     /**
42
-     * @return JsonResponse Response with result or error
42
+     * @return Response|null Response with result or error
43 43
      */
44 44
     public function swaggerAction()
45 45
     {
Please login to merge, or discard this patch.
src/Graviton/GeneratorBundle/Definition/Schema/Field.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
     }
260 260
 
261 261
     /**
262
-     * @param array $collection Field
262
+     * @param string[] $collection Field
263 263
      * @return $this
264 264
      */
265 265
     public function setCollection(array $collection)
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
     }
288 288
 
289 289
     /**
290
-     * @return mixed
290
+     * @return boolean
291 291
      */
292 292
     public function getSearchable()
293 293
     {
Please login to merge, or discard this patch.
src/Graviton/RestBundle/Service/RqlTranslator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      *
36 36
      * @param  SearchNode $searchNode   The given search node to transform
37 37
      * @param  array      $searchFields Which fields should be searched for all terms in SearchNode
38
-     * @return SearchNode|OrNode|EqNode
38
+     * @return AbstractQueryNode
39 39
      */
40 40
     public function translateSearchNode(SearchNode $searchNode, $searchFields = array())
41 41
     {
Please login to merge, or discard this patch.