1
0

Fixed bugs + testing

This commit is contained in:
2017-02-19 12:24:32 +01:00
parent 8ea09dde35
commit 807384620c
7 changed files with 38 additions and 8 deletions

View File

@ -13,8 +13,18 @@ abstract class AbstractRequest extends BaseAbstractRequest
return $this->getParameter('clientId');
}
public function setClientId($value)
{
return $this->setParameter('clientId', $value);
}
public function getClientSecret()
{
return $this->getParameter('clientSecret');
}
public function setClientSecret($value)
{
return $this->setParameter('clientSecret', $value);
}
}