Skip to content

Commit

Permalink
Fix getFileLines comment, fixup 8338e58
Browse files Browse the repository at this point in the history
  • Loading branch information
denis-sokolov committed Jan 12, 2020
1 parent 4c97f81 commit c09b643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Whoops/Exception/Frame.php
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public function getRawFrame()
* $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
Expand Down

0 comments on commit c09b643

Please sign in to comment.