Completed
Push — master ( 62e1cb...b85dc3 )
by Matthew
02:30
created
src/Controller/EndpointBaseController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     /**
14 14
      * Returns a single entry
15 15
      *
16
-     * @param  Symfony\Component\HttpFoundation\Request $request
16
+     * @param  Request $request
17 17
      * @param  array   $args
18 18
      *
19 19
      * @return \League\Route\Http\JsonResponse
Please login to merge, or discard this patch.
src/Controller/Statistics/OutfitTotalsMetricsEndpoint.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     /**
13 13
      * Construct
14 14
      *
15
-     * @param \Ps2alerts\Api\Loader\Metrics\OutfitTotalsMetricsLoader $loader
15
+     * @param OutfitTotalsMetricsLoader $loader
16 16
      */
17 17
     public function __construct(OutfitTotalsMetricsLoader $loader)
18 18
     {
Please login to merge, or discard this patch.
src/Loader/AbstractLoader.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,6 @@  discard block
 block discarded – undo
72 72
     /**
73 73
      * Gets the Cache namespace key for Redis
74 74
      *
75
-     * @param string $string
76 75
      */
77 76
     public function getCacheNamespace()
78 77
     {
@@ -145,7 +144,7 @@  discard block
 block discarded – undo
145 144
      * Sets JSON encoded value within Redis with an expiry in seconds
146 145
      *
147 146
      * @param string  $key
148
-     * @param mixed   $value   Data to encode into JSON and store
147
+     * @param string   $value   Data to encode into JSON and store
149 148
      * @param integer $expires Cache expiry time in seconds
150 149
      */
151 150
     public function setExpireKey($key, $value, $expires)
Please login to merge, or discard this patch.
src/Loader/Statistics/OutfitTotalsMetricsLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     /**
17 17
      * Construct
18 18
      *
19
-     * @param \Ps2alerts\Api\Repository\Metrics\OutfitTotalsRepository $repository
19
+     * @param OutfitTotalsRepository $repository
20 20
      */
21 21
     public function __construct(OutfitTotalsRepository $repository)
22 22
     {
Please login to merge, or discard this patch.
src/Controller/Metrics/VehicleMetricsEndpoint.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     /**
14 14
      * Returns a single entry
15 15
      *
16
-     * @param  Symfony\Component\HttpFoundation\Request $request
16
+     * @param  Request $request
17 17
      * @param  array   $args
18 18
      *
19 19
      * @return \League\Route\Http\JsonResponse
Please login to merge, or discard this patch.
src/Controller/Metrics/WeaponMetricsEndpoint.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     /**
14 14
      * Returns a single entry
15 15
      *
16
-     * @param  Symfony\Component\HttpFoundation\Request $request
16
+     * @param  Request $request
17 17
      * @param  array   $args
18 18
      *
19 19
      * @return \League\Route\Http\JsonResponse
Please login to merge, or discard this patch.
src/QueryObjects/QueryObject.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
     /**
144 144
      * Allows setting of workaround flags
145 145
      *
146
-     * @param array|string $flags
146
+     * @param string $flags
147 147
      */
148 148
     public function setFlags($flags)
149 149
     {
Please login to merge, or discard this patch.