lithium\core\StaticObject::_parents PHP 메소드

_parents() 보호된 정적인 메소드

Gets and caches an array of the parent methods of a class.
protected static _parents ( ) : array
리턴 array Returns an array of parent classes for the current class.
    protected static function _parents()
    {
        $class = get_called_class();
        if (!isset(self::$_parents[$class])) {
            self::$_parents[$class] = class_parents($class);
        }
        return self::$_parents[$class];
    }