for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Redbox\Twitch;
class Authorization {
/**
* @var array
*/
protected $scopes = [];
* @var string
protected $created_at = '';
protected $updated_at = '';
* @return array
public function getScopes()
{
return $this->scopes;
}
* @param array $scopes
public function setScopes($scopes)
$this->scopes = $scopes;
* @return string
public function getCreatedAt()
return $this->created_at;
* @param string $created_at
public function setCreatedAt($created_at)
$this->created_at = $created_at;
public function getUpdatedAt()
return $this->updated_at;
* @param string $updated_at
public function setUpdatedAt($updated_at)
$this->updated_at = $updated_at;