/home/techb158/dev.balacoffee.com/vendor/facade/flare-client-php/src/Stacktrace
Edit: /home/techb158/dev.balacoffee.com/vendor/facade/flare-client-php/src/Stacktrace/File.php (744B)
file = new SplFileObject($path);
}
public function numberOfLines(): int
{
$this->file->seek(PHP_INT_MAX);
return $this->file->key() + 1;
}
public function getLine(int $lineNumber = null): string
{
if (is_null($lineNumber)) {
return $this->getNextLine();
}
$this->file->seek($lineNumber - 1);
return $this->file->current();
}
public function getNextLine(): string
{
$this->file->next();
return $this->file->current();
}
}