%PDF- %PDF-
Direktori : /home/graphicd/public_html/vebto/vendor/gliterd/backblaze-b2/src/ |
Current File : /home/graphicd/public_html/vebto/vendor/gliterd/backblaze-b2/src/Bucket.php |
<?php namespace BackblazeB2; class Bucket { const TYPE_PUBLIC = 'allPublic'; const TYPE_PRIVATE = 'allPrivate'; protected $id; protected $name; protected $type; /** * Bucket constructor. * * @param $id * @param $name * @param $type */ public function __construct($id, $name, $type) { $this->id = $id; $this->name = $name; $this->type = $type; } public function getId() { return $this->id; } public function getName() { return $this->name; } public function getType() { return $this->type; } }