BetterReflectionTest\Reflection\Adapter\ReflectionPropertyTest::methodExpectationProvider PHP Метод

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

    public function methodExpectationProvider()
    {
        $mockClassLike = $this->createMock(BetterReflectionClass::class);
        return [['__toString', null, '', []], ['getName', null, '', []], ['getValue', NotImplemented::class, null, []], ['setValue', NotImplemented::class, null, [new \stdClass()]], ['isPublic', null, true, []], ['isPrivate', null, true, []], ['isProtected', null, true, []], ['isStatic', null, true, []], ['isDefault', null, true, []], ['getModifiers', null, 123, []], ['getDeclaringClass', null, $mockClassLike, []], ['getDocComment', null, '', []], ['setAccessible', NotImplemented::class, null, [true]]];
    }