for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Baguette\Mastodon\Service;
/**
* Scope
*
* @author USAMI Kenta <[email protected]>
* @copyright 2017 Baguette HQ
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0
*/
class Scope
{
/** @var string[] */
private $scopes;
* @param string[] $scopes
public function __construct(array $scopes)
sort($scopes);
$this->scopes = $scopes;
}
public function __toString()
return implode(' ', $this->scopes);