Gittern\Transport\RawObject::__construct PHP Method

__construct() public method

public __construct ( $type, $data )
    public function __construct($type, $data)
    {
        if (is_numeric($type)) {
            $this->type = $this->convertNumericType($type);
        } else {
            $this->type = $type;
        }
        $this->data = $data;
    }