@@ -246,7 +246,7 @@ public function appendFilter(string $filtername, int $read_write, $params = null
246246 /**
247247 * Set CSV control.
248248 *
249- * @see http://php.net/manual/en/\ SplFileObject.setcsvcontrol.php
249+ * @see http://php.net/manual/en/SplFileObject.setcsvcontrol.php
250250 */
251251 public function setCsvControl (string $ delimiter = ', ' , string $ enclosure = '" ' , string $ escape = '\\' ): void
252252 {
@@ -278,7 +278,7 @@ protected function filterControl(string $delimiter, string $enclosure, string $e
278278 /**
279279 * Set CSV control.
280280 *
281- * @see http://php.net/manual/en/\ SplFileObject.getcsvcontrol.php
281+ * @see http://php.net/manual/en/SplFileObject.getcsvcontrol.php
282282 *
283283 * @return string[]
284284 */
@@ -290,7 +290,7 @@ public function getCsvControl(): array
290290 /**
291291 * Set CSV stream flags.
292292 *
293- * @see http://php.net/manual/en/\ SplFileObject.setflags.php
293+ * @see http://php.net/manual/en/SplFileObject.setflags.php
294294 */
295295 public function setFlags (int $ flags ): void
296296 {
@@ -300,7 +300,7 @@ public function setFlags(int $flags): void
300300 /**
301301 * Write a field array as a CSV line.
302302 *
303- * @see http://php.net/manual/en/\ SplFileObject.fputcsv.php
303+ * @see http://php.net/manual/en/SplFileObject.fputcsv.php
304304 *
305305 * @return int|false
306306 */
@@ -314,7 +314,7 @@ public function fputcsv(array $fields, string $delimiter = ',', string $enclosur
314314 /**
315315 * Get line number.
316316 *
317- * @see http://php.net/manual/en/\ SplFileObject.key.php
317+ * @see http://php.net/manual/en/SplFileObject.key.php
318318 *
319319 * @return int
320320 */
@@ -326,7 +326,7 @@ public function key()
326326 /**
327327 * Read next line.
328328 *
329- * @see http://php.net/manual/en/\ SplFileObject.next.php
329+ * @see http://php.net/manual/en/SplFileObject.next.php
330330 */
331331 public function next (): void
332332 {
@@ -337,7 +337,7 @@ public function next(): void
337337 /**
338338 * Rewind the file to the first line.
339339 *
340- * @see http://php.net/manual/en/\ SplFileObject.rewind.php
340+ * @see http://php.net/manual/en/SplFileObject.rewind.php
341341 *
342342 * @throws Exception if the stream resource is not seekable
343343 */
@@ -358,7 +358,7 @@ public function rewind(): void
358358 /**
359359 * Not at EOF.
360360 *
361- * @see http://php.net/manual/en/\ SplFileObject.valid.php
361+ * @see http://php.net/manual/en/SplFileObject.valid.php
362362 *
363363 * @return bool
364364 */
@@ -374,7 +374,7 @@ public function valid()
374374 /**
375375 * Retrieves the current line of the file.
376376 *
377- * @see http://php.net/manual/en/\ SplFileObject.current.php
377+ * @see http://php.net/manual/en/SplFileObject.current.php
378378 *
379379 * @return mixed The value of the current element.
380380 */
@@ -406,7 +406,7 @@ protected function getCurrentRecord()
406406 /**
407407 * Seek to specified line.
408408 *
409- * @see http://php.net/manual/en/\ SplFileObject.seek.php
409+ * @see http://php.net/manual/en/SplFileObject.seek.php
410410 *
411411 * @param int $position
412412 * @throws Exception if the position is negative
@@ -433,7 +433,7 @@ public function seek($position): void
433433 /**
434434 * Output all remaining data on a file pointer.
435435 *
436- * @see http://php.net/manual/en/\ SplFileObject.fpatssthru.php
436+ * @see http://php.net/manual/en/SplFileObject.fpatssthru.php
437437 *
438438 * @return int|false
439439 */
@@ -445,7 +445,7 @@ public function fpassthru()
445445 /**
446446 * Read from file.
447447 *
448- * @see http://php.net/manual/en/\ SplFileObject.fread.php
448+ * @see http://php.net/manual/en/SplFileObject.fread.php
449449 *
450450 * @param int $length The number of bytes to read
451451 *
@@ -459,7 +459,7 @@ public function fread(int $length)
459459 /**
460460 * Gets a line from file.
461461 *
462- * @see http://php.net/manual/en/\ SplFileObject.fgets.php
462+ * @see http://php.net/manual/en/SplFileObject.fgets.php
463463 *
464464 * @return string|false
465465 */
@@ -471,7 +471,7 @@ public function fgets()
471471 /**
472472 * Seek to a position.
473473 *
474- * @see http://php.net/manual/en/\ SplFileObject.fseek.php
474+ * @see http://php.net/manual/en/SplFileObject.fseek.php
475475 *
476476 * @throws Exception if the stream resource is not seekable
477477 */
@@ -487,7 +487,7 @@ public function fseek(int $offset, int $whence = SEEK_SET): int
487487 /**
488488 * Write to stream.
489489 *
490- * @see http://php.net/manual/en/\ SplFileObject.fwrite.php
490+ * @see http://php.net/manual/en/SplFileObject.fwrite.php
491491 *
492492 * @return int|false
493493 */
@@ -504,7 +504,7 @@ public function fwrite(string $str, int $length = null)
504504 /**
505505 * Flushes the output to a file.
506506 *
507- * @see http://php.net/manual/en/\ SplFileObject.fwrite.php
507+ * @see http://php.net/manual/en/SplFileObject.fwrite.php
508508 */
509509 public function fflush (): bool
510510 {
0 commit comments