Rest_Controller::__construct( string $namespace_base, string $version, string $rest_base )

Summary

Rest_Controller constructor.


Parameters

$namespace_base

(string) (Required)

$version

(string) (Required)

$rest_base

(string) (Required)


Source

File: src/BigCommerce/Rest/Rest_Controller.php

	public function __construct( $namespace_base, $version, $rest_base ) {
		$this->namespace_base = $namespace_base;
		$this->version        = $version;

		$this->namespace = $this->get_namespace();
		$this->rest_base = $rest_base;
	}


User Contributed Notes

You must log in before being able to contribute a note or feedback.