Ouzo\Utilities\DynamicProxy::getClassMethods PHP 메소드

getClassMethods() 개인적인 정적인 메소드

private static getClassMethods ( ReflectionClass $class ) : ReflectionMetho\ReflectionMethod[]
$class ReflectionClass
리턴 ReflectionMetho\ReflectionMethod[]
    private static function getClassMethods(ReflectionClass $class)
    {
        $methods = $class->getMethods();
        return Arrays::filter($methods, function (ReflectionMethod $method) {
            return !$method->isConstructor();
        });
    }