for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BWC\Share\Github;
use BWC\Share\Object\DeserializeTrait;
class GithubAccessResponse
{
use DeserializeTrait;
/** @var string */
public $access_token;
/** @var string[] */
public $scope;
public $token_type;
public $error;
public $error_description;
public $error_uri;
public function deserializeExtra($arr)
$arr
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$this->scope = explode(',', $this->scope);
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.