Completed
Push — master ( ea6e0d...f60c21 )
by Alejandro
05:39 queued 02:45
created
module/Rest/src/Action/ListShortcodesAction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 
68 68
     /**
69 69
      * @param array $query
70
-     * @return array
70
+     * @return integer
71 71
      */
72 72
     public function queryToListParams(array $query)
73 73
     {
Please login to merge, or discard this patch.
module/Core/src/Service/UrlShortener.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -51,6 +51,9 @@  discard block
 block discarded – undo
51 51
      */
52 52
     private $urlValidationEnabled;
53 53
 
54
+    /**
55
+     * @param boolean $urlValidationEnabled
56
+     */
54 57
     public function __construct(
55 58
         ClientInterface $httpClient,
56 59
         EntityManagerInterface $em,
@@ -173,6 +176,9 @@  discard block
 block discarded – undo
173 176
         return $this->chars[(int) $id] . $code;
174 177
     }
175 178
 
179
+    /**
180
+     * @param null|string $customSlug
181
+     */
176 182
     private function processCustomSlug($customSlug)
177 183
     {
178 184
         if ($customSlug === null) {
Please login to merge, or discard this patch.