BetterReflectionTest\Reflection\ReflectionClassTest::startEndLineProvider PHP Метод

startEndLineProvider() публичный Метод

    public function startEndLineProvider()
    {
        return [["<?php\n\nclass Foo {\n}\n", 3, 4], ["<?php\n\nclass Foo {\n\n}\n", 3, 5], ["<?php\n\n\nclass Foo {\n}\n", 4, 5]];
    }
ReflectionClassTest