Neos\Flow\Tests\Unit\Mvc\Routing\RouteTest::matchesThrowsExceptionIfRoutePartValueContainsObjectsDataProvider PHP Метод

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

Data provider
    public function matchesThrowsExceptionIfRoutePartValueContainsObjectsDataProvider()
    {
        $object = new \stdClass();
        return [[true, ['foo' => $object]], [true, ['foo' => 'bar', 'baz' => $object]], [true, ['foo' => ['bar' => ['baz' => 'quux', 'here' => $object]]]], [false, ['no object']], [false, ['foo' => 'no object']], [false, [true]]];
    }
RouteTest