for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Rinvex\Oauth\Bridge;
use League\OAuth2\Server\Entities\Traits\EntityTrait;
use League\OAuth2\Server\Entities\ScopeEntityInterface;
class Scope implements ScopeEntityInterface
{
use EntityTrait;
/**
* Create a new scope instance.
*
* @param string $name
* @return void
@return
Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.
Please refer to the PHP core documentation on constructors.
*/
public function __construct($name)
$this->setIdentifier($name);
}
* Get the data that should be serialized to JSON.
* @return mixed
public function jsonSerialize()
return $this->getIdentifier();
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.