Make tab shortage function public

This commit is contained in:
Aidan Woods 2019-01-20 02:09:21 +00:00
parent 3a0db641aa
commit deaf0682b5
No known key found for this signature in database
GPG Key ID: 9A6A8EFAA512BBB9

View File

@ -54,7 +54,7 @@ final class Line
* @param int $indentOffset
* @return int
*/
private static function tabShortage($fromPosition, $indentOffset)
public static function tabShortage($fromPosition, $indentOffset)
{
return self::INDENT_STEP - ($fromPosition + $indentOffset) % self::INDENT_STEP;
}