Completed
Push — master ( 6eb90e...10f6b0 )
by Victor
02:12
created
src/Stringy.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      *
173 173
      * @param int $index
174 174
      * @throws IndexOutOfBoundsException
175
-     * @return String
175
+     * @return Stringy
176 176
      */
177 177
     public function charAt($index)
178 178
     {
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
     /**
264 264
      * Returns a copy of the string, with leading and trailing whitespace omitted.
265 265
      *
266
-     * @return String
266
+     * @return Stringy
267 267
      */
268 268
     public function trim()
269 269
     {
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
      *
278 278
      * @param int $beginIndex
279 279
      * @param int $endIndex
280
-     * @return String
280
+     * @return Stringy
281 281
      */
282 282
     public function substring($beginIndex, $endIndex = -1)
283 283
     {
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
      *
294 294
      * @param string $oldChar
295 295
      * @param string $newChar
296
-     * @return String
296
+     * @return Stringy
297 297
      */
298 298
     public function replace($oldChar, $newChar)
299 299
     {
Please login to merge, or discard this patch.