Lisphp_Runtime_PHPClass::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( $class )
    public function __construct($class)
    {
        try {
            $this->class = new ReflectionClass($class);
        } catch (ReflectionException $e) {
            throw new UnexpectedValueException($e);
        }
    }