/**
  * Associate a scope with an acess token
  *
  * @param \League\OAuth2\Server\Entity\AuthCodeEntity $token The auth code
  * @param \League\OAuth2\Server\Entity\ScopeEntity $scope The scope
  *
  * @return void
  */
 public function associateScope(AuthCodeEntity $token, ScopeEntity $scope)
 {
     $this->storage->associateScope($token, $scope);
 }