Nginx-Config-Processor
Nginx-Config-Processor copied to clipboard
PHP notice when using Text::eol() and passing in a position that is out of range.
Can be reproduced by this example here:
<?php
$text = new Text('This is a line for testing...');
if ($text->eol(30)) {
// Do stuff...
}
This pull reuquest will fix that usecase.