Completed
Push — master ( 1efa22...d57925 )
by Lorenzo
02:40
created
src/helpers.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -668,7 +668,7 @@
 block discarded – undo
668 668
      * @param string $url URL to curl
669 669
      * @param string $method GET or POST, Default GET
670 670
      * @param mixed $data Data to post, Default false
671
-     * @param array $headers Additional headers, example: array ("Accept: application/json")
671
+     * @param string[] $headers Additional headers, example: array ("Accept: application/json")
672 672
      * @param bool $returnInfo Whether or not to retrieve curl_getinfo()
673 673
      * @param string $user
674 674
      * @param string $password
Please login to merge, or discard this patch.
src/string.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
      * Determine if a given string ends with a given substring.
137 137
      *
138 138
      * @param  string $haystack
139
-     * @param  string|array $needles
139
+     * @param  string $needles
140 140
      * @return bool
141 141
      */
142 142
     function ends_with($haystack, $needles)
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
      * Determine if a given string starts with a given substring.
181 181
      *
182 182
      * @param  string $haystack
183
-     * @param  string|array $needles
183
+     * @param  string $needles
184 184
      * @return bool
185 185
      */
186 186
     function starts_with($haystack, $needles)
@@ -548,7 +548,7 @@  discard block
 block discarded – undo
548 548
 
549 549
 /**
550 550
  * Return true if $subject is not null and is not empty string ('').
551
- * @param $subject
551
+ * @param string $subject
552 552
  * @param bool $withTrim if set to true (default) check if trim()!='' too.
553 553
  * @return bool
554 554
  */
Please login to merge, or discard this patch.