Completed
Pull Request — master (#14)
by
unknown
02:55
created
src/Applications/GitApplication.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,6 @@
 block discarded – undo
55 55
     /**
56 56
      * Indicates that application will be installed from custom git repository.
57 57
      *
58
-     * @param string $repository
59 58
      *
60 59
      * @return static
61 60
      */
Please login to merge, or discard this patch.
src/Commands/ResourceCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
     /**
83 83
      * Set resource ID.
84 84
      *
85
-     * @param int|string $resourceId
85
+     * @param integer $resourceId
86 86
      *
87 87
      * @return static
88 88
      */
Please login to merge, or discard this patch.
src/ApiResource.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
     /**
132 132
      * Get resource data.
133 133
      *
134
-     * @param string|int $key
134
+     * @param string $key
135 135
      * @param mixed      $default = null
136 136
      *
137 137
      * @return mixed|null
Please login to merge, or discard this patch.
src/Commands/ApiCommand.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     /**
93 93
      * Set payload data.
94 94
      *
95
-     * @param string|int $key
95
+     * @param string $key
96 96
      * @param mixed      $value
97 97
      *
98 98
      * @return static
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     /**
112 112
      * Return payload data.
113 113
      *
114
-     * @param string|int $key
114
+     * @param string $key
115 115
      * @param mixed      $default = null
116 116
      *
117 117
      * @return mixed|null
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
     /**
129 129
      * Determines if payload has requried keys.
130 130
      *
131
-     * @param string|int|array $keys
131
+     * @param string[] $keys
132 132
      *
133 133
      * @return bool
134 134
      */
Please login to merge, or discard this patch.
src/ApiProvider.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
      *
99 99
      * @param \Closure
100 100
      */
101
-    public function setRateLimiter(Callable $rateLimiter)
101
+    public function setRateLimiter(callable $rateLimiter)
102 102
     {
103 103
         $this->rateLimiter = $rateLimiter;
104 104
     }
Please login to merge, or discard this patch.
src/Forge.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@
 block discarded – undo
223 223
      *
224 224
      * @param \Closure
225 225
      */
226
-    public function setRateLimiter(Callable $rateLimiter)
226
+    public function setRateLimiter(callable $rateLimiter)
227 227
     {
228 228
         $this->api->setRateLimiter($rateLimiter);
229 229
     }
Please login to merge, or discard this patch.