Neos\Eel\Tests\Unit\StringHelperTest::startsWithExamples PHP Метод

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

public startsWithExamples ( )
    public function startsWithExamples()
    {
        return ['search matched' => ['To be, or not to be, that is the question.', 'To be', null, true], 'search not matched' => ['To be, or not to be, that is the question.', 'not to be', null, false], 'search with position' => ['To be, or not to be, that is the question.', 'that is', 21, true], 'search with duplicate match' => ['to be, or not to be, that is the question.', 'to be', null, true], 'unicode content can be searched' => ['Öaßaü', 'Öa', null, true]];
    }