Inject server

This commit is contained in:
Alex Bilbie 2014-05-02 15:14:46 +01:00
parent 184fac507b
commit 228144a701

View File

@ -11,6 +11,8 @@
namespace League\OAuth2\Server\Storage; namespace League\OAuth2\Server\Storage;
use League\OAuth2\Server\AbstractServer;
/** /**
* Storage adapter class * Storage adapter class
*/ */
@ -26,7 +28,7 @@ class Adapter
* Set the server * Set the server
* @param \League\OAuth2\Server\AbstractServer $server * @param \League\OAuth2\Server\AbstractServer $server
*/ */
public function setServer($server) public function setServer(AbstractServer $server)
{ {
$this->server = $server; $this->server = $server;
return $this; return $this;