Fix getFileLines comment, fixup 8338e582

This commit is contained in:
Denis Sokolov
2020-01-12 21:12:31 +02:00
committed by GitHub
parent 4c97f814aa
commit c09b64303e
+1 -1
View File
@@ -191,7 +191,7 @@ class Frame implements Serializable
* $frame->getFileLines(); // => array( 0 => '<?php', 1 => '...', ...)
* @example
* Get one line for this file, starting at line 10 (zero-indexed, remember!)
* $frame->getFileLines(9, 1); // array( 10 => '...', 11 => '...')
* $frame->getFileLines(9, 1); // array( 9 => '...' )
*
* @throws InvalidArgumentException if $length is less than or equal to 0
* @param int $start