Qiniu\Storage\BucketManager::__construct PHP Method

__construct() public method

public __construct ( Auth $auth, Zone $zone = null )
$auth Qiniu\Auth
$zone Qiniu\Zone
    public function __construct(Auth $auth, Zone $zone = null)
    {
        $this->auth = $auth;
        if ($zone === null) {
            $this->zone = new Zone();
        }
    }