for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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;