diff --git a/master/AbstractServer.php.html b/master/AbstractServer.php.html index 1072ee2e..070dd4e5 100644 --- a/master/AbstractServer.php.html +++ b/master/AbstractServer.php.html @@ -141,7 +141,7 @@ -  addEventListener +  addEventListener
100.00% covered (success) @@ -162,7 +162,7 @@ -  getEventEmitter +  getEventEmitter
100.00% covered (success) @@ -183,7 +183,7 @@ -  setRequest +  setRequest
100.00% covered (success) @@ -204,7 +204,7 @@ -  getRequest +  getRequest
100.00% covered (success) @@ -225,7 +225,7 @@ -  setClientStorage +  setClientStorage
100.00% covered (success) @@ -246,7 +246,7 @@ -  setSessionStorage +  setSessionStorage
100.00% covered (success) @@ -267,7 +267,7 @@ -  setAccessTokenStorage +  setAccessTokenStorage
100.00% covered (success) @@ -288,7 +288,7 @@ -  setRefreshTokenStorage +  setRefreshTokenStorage
100.00% covered (success) @@ -309,7 +309,7 @@ -  setAuthCodeStorage +  setAuthCodeStorage
100.00% covered (success) @@ -330,7 +330,7 @@ -  setScopeStorage +  setScopeStorage
100.00% covered (success) @@ -351,7 +351,7 @@ -  getClientStorage +  getClientStorage
100.00% covered (success) @@ -372,7 +372,7 @@ -  getScopeStorage +  getScopeStorage
100.00% covered (success) @@ -393,7 +393,7 @@ -  getSessionStorage +  getSessionStorage
100.00% covered (success) @@ -414,7 +414,7 @@ -  getRefreshTokenStorage +  getRefreshTokenStorage
100.00% covered (success) @@ -435,7 +435,7 @@ -  getAccessTokenStorage +  getAccessTokenStorage
100.00% covered (success) @@ -456,7 +456,7 @@ -  getAuthCodeStorage +  getAuthCodeStorage
100.00% covered (success) @@ -477,7 +477,7 @@ -  setTokenType +  setTokenType
100.00% covered (success) @@ -498,7 +498,7 @@ -  getTokenType +  getTokenType
100.00% covered (success) @@ -519,7 +519,7 @@ -  getMacStorage +  getMacStorage
100.00% covered (success) @@ -540,7 +540,7 @@ -  setMacStorage +  setMacStorage
100.00% covered (success) @@ -689,239 +689,240 @@      *      * @param string   $eventName Event name      * @param callable $listener  Callable function or method -      */ -     public function addEventListener($eventName, callable $listener) -     { -         $this->eventEmitter->addListener($eventName, $listener); -     } - -     /** -      * Returns the event emitter -      * -      * @return \League\Event\Emitter -      */ -     public function getEventEmitter() -     { -         return $this->eventEmitter; -     } - -     /** -      * Sets the Request Object -      * -      * @param \Symfony\Component\HttpFoundation\Request The Request Object -      * -      * @return self -      */ -     public function setRequest($request) -     { -         $this->request = $request; - -         return $this; -     } - -     /** -      * Gets the Request object. It will create one from the globals if one is not set. -      * -      * @return \Symfony\Component\HttpFoundation\Request -      */ -     public function getRequest() -     { -         if ($this->request === null) { -             $this->request = Request::createFromGlobals(); -         } - -         return $this->request; -     } - -     /** -      * Set the client storage -      * -      * @param \League\OAuth2\Server\Storage\ClientInterface $storage -      * -      * @return self -      */ -     public function setClientStorage(ClientInterface $storage) -     { -         $storage->setServer($this); -         $this->clientStorage = $storage; - -         return $this; -     } - -     /** -      * Set the session storage -      * -      * @param \League\OAuth2\Server\Storage\SessionInterface $storage -      * -      * @return self -      */ -     public function setSessionStorage(SessionInterface $storage) -     { -         $storage->setServer($this); -         $this->sessionStorage = $storage; - -         return $this; -     } - -     /** -      * Set the access token storage -      * -      * @param \League\OAuth2\Server\Storage\AccessTokenInterface $storage -      * -      * @return self -      */ -     public function setAccessTokenStorage(AccessTokenInterface $storage) -     { -         $storage->setServer($this); -         $this->accessTokenStorage = $storage; - -         return $this; -     } - -     /** -      * Set the refresh token storage -      * -      * @param \League\OAuth2\Server\Storage\RefreshTokenInterface $storage -      * -      * @return self -      */ -     public function setRefreshTokenStorage(RefreshTokenInterface $storage) -     { -         $storage->setServer($this); -         $this->refreshTokenStorage = $storage; - -         return $this; -     } - -     /** -      * Set the auth code storage -      * -      * @param \League\OAuth2\Server\Storage\AuthCodeInterface $storage -      * -      * @return self -      */ -     public function setAuthCodeStorage(AuthCodeInterface $storage) -     { -         $storage->setServer($this); -         $this->authCodeStorage = $storage; - -         return $this; -     } - -     /** -      * Set the scope storage -      * -      * @param \League\OAuth2\Server\Storage\ScopeInterface $storage -      * -      * @return self -      */ -     public function setScopeStorage(ScopeInterface $storage) -     { -         $storage->setServer($this); -         $this->scopeStorage = $storage; - -         return $this; -     } - -     /** -      * Return the client storage -      * -      * @return \League\OAuth2\Server\Storage\ClientInterface -      */ -     public function getClientStorage() -     { -         return $this->clientStorage; -     } - -     /** -      * Return the scope storage -      * -      * @return \League\OAuth2\Server\Storage\ScopeInterface -      */ -     public function getScopeStorage() -     { -         return $this->scopeStorage; -     } - -     /** -      * Return the session storage -      * -      * @return \League\OAuth2\Server\Storage\SessionInterface -      */ -     public function getSessionStorage() -     { -         return $this->sessionStorage; -     } - -     /** -      * Return the refresh token storage -      * -      * @return \League\OAuth2\Server\Storage\RefreshTokenInterface -      */ -     public function getRefreshTokenStorage() -     { -         return $this->refreshTokenStorage; -     } - -     /** -      * Return the access token storage -      * -      * @return \League\OAuth2\Server\Storage\AccessTokenInterface -      */ -     public function getAccessTokenStorage() -     { -         return $this->accessTokenStorage; -     } - -     /** -      * Return the auth code storage -      * -      * @return \League\OAuth2\Server\Storage\AuthCodeInterface -      */ -     public function getAuthCodeStorage() -     { -         return $this->authCodeStorage; -     } - -     /** -      * Set the access token type -      * -      * @param TokenTypeInterface $tokenType The token type -      * -      * @return void -      */ -     public function setTokenType(TokenTypeInterface $tokenType) -     { -         $tokenType->setServer($this); -         $this->tokenType = $tokenType; -     } - -     /** -      * Get the access token type -      * -      * @return TokenTypeInterface -      */ -     public function getTokenType() -     { -         return $this->tokenType; -     } - -     /** -      * @return MacTokenInterface -      */ -     public function getMacStorage() -     { -         return $this->macStorage; -     } - -     /** -      * @param MacTokenInterface $macStorage -      */ -     public function setMacStorage(MacTokenInterface $macStorage) -     { -         $this->macStorage = $macStorage; -     } - } +      * @param int      $priority  Priority of event listener +      */ +     public function addEventListener($eventName, callable $listener, $priority = Emitter::P_NORMAL) +     { +         $this->eventEmitter->addListener($eventName, $listener, $priority); +     } + +     /** +      * Returns the event emitter +      * +      * @return \League\Event\Emitter +      */ +     public function getEventEmitter() +     { +         return $this->eventEmitter; +     } + +     /** +      * Sets the Request Object +      * +      * @param \Symfony\Component\HttpFoundation\Request The Request Object +      * +      * @return self +      */ +     public function setRequest($request) +     { +         $this->request = $request; + +         return $this; +     } + +     /** +      * Gets the Request object. It will create one from the globals if one is not set. +      * +      * @return \Symfony\Component\HttpFoundation\Request +      */ +     public function getRequest() +     { +         if ($this->request === null) { +             $this->request = Request::createFromGlobals(); +         } + +         return $this->request; +     } + +     /** +      * Set the client storage +      * +      * @param \League\OAuth2\Server\Storage\ClientInterface $storage +      * +      * @return self +      */ +     public function setClientStorage(ClientInterface $storage) +     { +         $storage->setServer($this); +         $this->clientStorage = $storage; + +         return $this; +     } + +     /** +      * Set the session storage +      * +      * @param \League\OAuth2\Server\Storage\SessionInterface $storage +      * +      * @return self +      */ +     public function setSessionStorage(SessionInterface $storage) +     { +         $storage->setServer($this); +         $this->sessionStorage = $storage; + +         return $this; +     } + +     /** +      * Set the access token storage +      * +      * @param \League\OAuth2\Server\Storage\AccessTokenInterface $storage +      * +      * @return self +      */ +     public function setAccessTokenStorage(AccessTokenInterface $storage) +     { +         $storage->setServer($this); +         $this->accessTokenStorage = $storage; + +         return $this; +     } + +     /** +      * Set the refresh token storage +      * +      * @param \League\OAuth2\Server\Storage\RefreshTokenInterface $storage +      * +      * @return self +      */ +     public function setRefreshTokenStorage(RefreshTokenInterface $storage) +     { +         $storage->setServer($this); +         $this->refreshTokenStorage = $storage; + +         return $this; +     } + +     /** +      * Set the auth code storage +      * +      * @param \League\OAuth2\Server\Storage\AuthCodeInterface $storage +      * +      * @return self +      */ +     public function setAuthCodeStorage(AuthCodeInterface $storage) +     { +         $storage->setServer($this); +         $this->authCodeStorage = $storage; + +         return $this; +     } + +     /** +      * Set the scope storage +      * +      * @param \League\OAuth2\Server\Storage\ScopeInterface $storage +      * +      * @return self +      */ +     public function setScopeStorage(ScopeInterface $storage) +     { +         $storage->setServer($this); +         $this->scopeStorage = $storage; + +         return $this; +     } + +     /** +      * Return the client storage +      * +      * @return \League\OAuth2\Server\Storage\ClientInterface +      */ +     public function getClientStorage() +     { +         return $this->clientStorage; +     } + +     /** +      * Return the scope storage +      * +      * @return \League\OAuth2\Server\Storage\ScopeInterface +      */ +     public function getScopeStorage() +     { +         return $this->scopeStorage; +     } + +     /** +      * Return the session storage +      * +      * @return \League\OAuth2\Server\Storage\SessionInterface +      */ +     public function getSessionStorage() +     { +         return $this->sessionStorage; +     } + +     /** +      * Return the refresh token storage +      * +      * @return \League\OAuth2\Server\Storage\RefreshTokenInterface +      */ +     public function getRefreshTokenStorage() +     { +         return $this->refreshTokenStorage; +     } + +     /** +      * Return the access token storage +      * +      * @return \League\OAuth2\Server\Storage\AccessTokenInterface +      */ +     public function getAccessTokenStorage() +     { +         return $this->accessTokenStorage; +     } + +     /** +      * Return the auth code storage +      * +      * @return \League\OAuth2\Server\Storage\AuthCodeInterface +      */ +     public function getAuthCodeStorage() +     { +         return $this->authCodeStorage; +     } + +     /** +      * Set the access token type +      * +      * @param TokenTypeInterface $tokenType The token type +      * +      * @return void +      */ +     public function setTokenType(TokenTypeInterface $tokenType) +     { +         $tokenType->setServer($this); +         $this->tokenType = $tokenType; +     } + +     /** +      * Get the access token type +      * +      * @return TokenTypeInterface +      */ +     public function getTokenType() +     { +         return $this->tokenType; +     } + +     /** +      * @return MacTokenInterface +      */ +     public function getMacStorage() +     { +         return $this->macStorage; +     } + +     /** +      * @param MacTokenInterface $macStorage +      */ +     public function setMacStorage(MacTokenInterface $macStorage) +     { +         $this->macStorage = $macStorage; +     } + } @@ -934,7 +935,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/AuthorizationServer.php.html b/master/AuthorizationServer.php.html index 84bff923..fbe5635f 100644 --- a/master/AuthorizationServer.php.html +++ b/master/AuthorizationServer.php.html @@ -746,7 +746,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Entity/AbstractTokenEntity.php.html b/master/Entity/AbstractTokenEntity.php.html index d0e3fec0..de0559b9 100644 --- a/master/Entity/AbstractTokenEntity.php.html +++ b/master/Entity/AbstractTokenEntity.php.html @@ -577,7 +577,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Entity/AccessTokenEntity.php.html b/master/Entity/AccessTokenEntity.php.html index 4885fc3c..98d1ef1f 100644 --- a/master/Entity/AccessTokenEntity.php.html +++ b/master/Entity/AccessTokenEntity.php.html @@ -314,7 +314,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Entity/AuthCodeEntity.php.html b/master/Entity/AuthCodeEntity.php.html index bdb61840..f61cbe03 100644 --- a/master/Entity/AuthCodeEntity.php.html +++ b/master/Entity/AuthCodeEntity.php.html @@ -391,7 +391,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Entity/ClientEntity.php.html b/master/Entity/ClientEntity.php.html index 4027e4fa..60a37dff 100644 --- a/master/Entity/ClientEntity.php.html +++ b/master/Entity/ClientEntity.php.html @@ -332,7 +332,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Entity/EntityTrait.php.html b/master/Entity/EntityTrait.php.html index 35ce3e06..a03f114a 100644 --- a/master/Entity/EntityTrait.php.html +++ b/master/Entity/EntityTrait.php.html @@ -170,7 +170,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Entity/RefreshTokenEntity.php.html b/master/Entity/RefreshTokenEntity.php.html index 01b8c5f3..9da86962 100644 --- a/master/Entity/RefreshTokenEntity.php.html +++ b/master/Entity/RefreshTokenEntity.php.html @@ -315,7 +315,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Entity/ScopeEntity.php.html b/master/Entity/ScopeEntity.php.html index b632843f..8316e429 100644 --- a/master/Entity/ScopeEntity.php.html +++ b/master/Entity/ScopeEntity.php.html @@ -290,7 +290,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Entity/SessionEntity.php.html b/master/Entity/SessionEntity.php.html index 9aaf54c5..36fcf01e 100644 --- a/master/Entity/SessionEntity.php.html +++ b/master/Entity/SessionEntity.php.html @@ -739,7 +739,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Entity/dashboard.html b/master/Entity/dashboard.html index 99941874..53f550ea 100644 --- a/master/Entity/dashboard.html +++ b/master/Entity/dashboard.html @@ -114,8 +114,8 @@ - hasScope0% - formatScopes88% + hasScope0% + formatScopes88% @@ -143,7 +143,7 @@
diff --git a/master/Entity/index.html b/master/Entity/index.html index fdaa6eae..be6d04c1 100644 --- a/master/Entity/index.html +++ b/master/Entity/index.html @@ -305,7 +305,7 @@ High: 90% to 100%

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Event/ClientAuthenticationFailedEvent.php.html b/master/Event/ClientAuthenticationFailedEvent.php.html index 2300f9f2..f978da25 100644 --- a/master/Event/ClientAuthenticationFailedEvent.php.html +++ b/master/Event/ClientAuthenticationFailedEvent.php.html @@ -234,7 +234,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Event/SessionOwnerEvent.php.html b/master/Event/SessionOwnerEvent.php.html index 34749c6b..3685f0dd 100644 --- a/master/Event/SessionOwnerEvent.php.html +++ b/master/Event/SessionOwnerEvent.php.html @@ -234,7 +234,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Event/UserAuthenticationFailedEvent.php.html b/master/Event/UserAuthenticationFailedEvent.php.html index 71547877..db442418 100644 --- a/master/Event/UserAuthenticationFailedEvent.php.html +++ b/master/Event/UserAuthenticationFailedEvent.php.html @@ -234,7 +234,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Event/dashboard.html b/master/Event/dashboard.html index bab348ac..44086aa0 100644 --- a/master/Event/dashboard.html +++ b/master/Event/dashboard.html @@ -114,8 +114,8 @@ - getRequest0% - getRequest0% + getRequest0% + getRequest0% @@ -141,7 +141,7 @@
diff --git a/master/Event/index.html b/master/Event/index.html index 00b55f6d..abb123f7 100644 --- a/master/Event/index.html +++ b/master/Event/index.html @@ -165,7 +165,7 @@ High: 90% to 100%

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Exception/AccessDeniedException.php.html b/master/Exception/AccessDeniedException.php.html index b293dd40..dda4f12e 100644 --- a/master/Exception/AccessDeniedException.php.html +++ b/master/Exception/AccessDeniedException.php.html @@ -173,7 +173,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Exception/InvalidClientException.php.html b/master/Exception/InvalidClientException.php.html index baf0d646..1284c1a9 100644 --- a/master/Exception/InvalidClientException.php.html +++ b/master/Exception/InvalidClientException.php.html @@ -173,7 +173,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Exception/InvalidCredentialsException.php.html b/master/Exception/InvalidCredentialsException.php.html index 82fc7fd9..8b861fcf 100644 --- a/master/Exception/InvalidCredentialsException.php.html +++ b/master/Exception/InvalidCredentialsException.php.html @@ -173,7 +173,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Exception/InvalidGrantException.php.html b/master/Exception/InvalidGrantException.php.html index e56db147..e1d2353b 100644 --- a/master/Exception/InvalidGrantException.php.html +++ b/master/Exception/InvalidGrantException.php.html @@ -180,7 +180,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Exception/InvalidRefreshException.php.html b/master/Exception/InvalidRefreshException.php.html index 877f81ce..89a0ed5c 100644 --- a/master/Exception/InvalidRefreshException.php.html +++ b/master/Exception/InvalidRefreshException.php.html @@ -173,7 +173,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Exception/InvalidRequestException.php.html b/master/Exception/InvalidRequestException.php.html index e8f8cb73..8fbdd80a 100644 --- a/master/Exception/InvalidRequestException.php.html +++ b/master/Exception/InvalidRequestException.php.html @@ -182,7 +182,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Exception/InvalidScopeException.php.html b/master/Exception/InvalidScopeException.php.html index ccc52b8e..ad15769a 100644 --- a/master/Exception/InvalidScopeException.php.html +++ b/master/Exception/InvalidScopeException.php.html @@ -182,7 +182,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Exception/OAuthException.php.html b/master/Exception/OAuthException.php.html index 9a71a79f..a1f3599d 100644 --- a/master/Exception/OAuthException.php.html +++ b/master/Exception/OAuthException.php.html @@ -366,7 +366,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Exception/ServerErrorException.php.html b/master/Exception/ServerErrorException.php.html index bff2c83e..9d84b061 100644 --- a/master/Exception/ServerErrorException.php.html +++ b/master/Exception/ServerErrorException.php.html @@ -176,7 +176,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Exception/UnauthorizedClientException.php.html b/master/Exception/UnauthorizedClientException.php.html index cc6df258..553caf86 100644 --- a/master/Exception/UnauthorizedClientException.php.html +++ b/master/Exception/UnauthorizedClientException.php.html @@ -173,7 +173,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Exception/UnsupportedGrantTypeException.php.html b/master/Exception/UnsupportedGrantTypeException.php.html index 6b51f8fb..f41fe1ba 100644 --- a/master/Exception/UnsupportedGrantTypeException.php.html +++ b/master/Exception/UnsupportedGrantTypeException.php.html @@ -180,7 +180,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Exception/UnsupportedResponseTypeException.php.html b/master/Exception/UnsupportedResponseTypeException.php.html index 8b45b89d..ae00ca68 100644 --- a/master/Exception/UnsupportedResponseTypeException.php.html +++ b/master/Exception/UnsupportedResponseTypeException.php.html @@ -175,7 +175,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Exception/dashboard.html b/master/Exception/dashboard.html index ced22e1d..4da2e67f 100644 --- a/master/Exception/dashboard.html +++ b/master/Exception/dashboard.html @@ -112,7 +112,7 @@ - getParameter0% + getParameter0% @@ -138,7 +138,7 @@
diff --git a/master/Exception/index.html b/master/Exception/index.html index 67e7e07c..ec2106b0 100644 --- a/master/Exception/index.html +++ b/master/Exception/index.html @@ -417,7 +417,7 @@ High: 90% to 100%

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Grant/AbstractGrant.php.html b/master/Grant/AbstractGrant.php.html index 7722bd7c..2889a2b2 100644 --- a/master/Grant/AbstractGrant.php.html +++ b/master/Grant/AbstractGrant.php.html @@ -481,7 +481,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Grant/AuthCodeGrant.php.html b/master/Grant/AuthCodeGrant.php.html index 603c6f27..ecf019eb 100644 --- a/master/Grant/AuthCodeGrant.php.html +++ b/master/Grant/AuthCodeGrant.php.html @@ -545,7 +545,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Grant/ClientCredentialsGrant.php.html b/master/Grant/ClientCredentialsGrant.php.html index de558f18..673c63e6 100644 --- a/master/Grant/ClientCredentialsGrant.php.html +++ b/master/Grant/ClientCredentialsGrant.php.html @@ -259,7 +259,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Grant/GrantTypeInterface.php.html b/master/Grant/GrantTypeInterface.php.html index c2a3dcc1..1eae26e5 100644 --- a/master/Grant/GrantTypeInterface.php.html +++ b/master/Grant/GrantTypeInterface.php.html @@ -146,7 +146,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Grant/PasswordGrant.php.html b/master/Grant/PasswordGrant.php.html index f1235781..885023c5 100644 --- a/master/Grant/PasswordGrant.php.html +++ b/master/Grant/PasswordGrant.php.html @@ -361,7 +361,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Grant/RefreshTokenGrant.php.html b/master/Grant/RefreshTokenGrant.php.html index 780cc805..4d1c8c8b 100644 --- a/master/Grant/RefreshTokenGrant.php.html +++ b/master/Grant/RefreshTokenGrant.php.html @@ -486,7 +486,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Grant/dashboard.html b/master/Grant/dashboard.html index 40271060..238a437d 100644 --- a/master/Grant/dashboard.html +++ b/master/Grant/dashboard.html @@ -112,7 +112,7 @@ - setRequireClientSecret0% + setRequireClientSecret0% @@ -138,7 +138,7 @@
diff --git a/master/Grant/index.html b/master/Grant/index.html index d88a3de3..9550c665 100644 --- a/master/Grant/index.html +++ b/master/Grant/index.html @@ -249,7 +249,7 @@ High: 90% to 100%

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/ResourceServer.php.html b/master/ResourceServer.php.html index 0e2cd156..135c9270 100644 --- a/master/ResourceServer.php.html +++ b/master/ResourceServer.php.html @@ -380,7 +380,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Storage/AbstractStorage.php.html b/master/Storage/AbstractStorage.php.html index 43372aee..e46e7af0 100644 --- a/master/Storage/AbstractStorage.php.html +++ b/master/Storage/AbstractStorage.php.html @@ -209,7 +209,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Storage/AccessTokenInterface.php.html b/master/Storage/AccessTokenInterface.php.html index 318699d0..baaa6dd1 100644 --- a/master/Storage/AccessTokenInterface.php.html +++ b/master/Storage/AccessTokenInterface.php.html @@ -156,7 +156,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Storage/AuthCodeInterface.php.html b/master/Storage/AuthCodeInterface.php.html index 77ca3f78..d7d2cd40 100644 --- a/master/Storage/AuthCodeInterface.php.html +++ b/master/Storage/AuthCodeInterface.php.html @@ -157,7 +157,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Storage/ClientInterface.php.html b/master/Storage/ClientInterface.php.html index b6ddf729..2a76b9bd 100644 --- a/master/Storage/ClientInterface.php.html +++ b/master/Storage/ClientInterface.php.html @@ -128,7 +128,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Storage/MacTokenInterface.php.html b/master/Storage/MacTokenInterface.php.html index e654746e..e9e0af5e 100644 --- a/master/Storage/MacTokenInterface.php.html +++ b/master/Storage/MacTokenInterface.php.html @@ -121,7 +121,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Storage/RefreshTokenInterface.php.html b/master/Storage/RefreshTokenInterface.php.html index 9b1b855a..a5fe6c25 100644 --- a/master/Storage/RefreshTokenInterface.php.html +++ b/master/Storage/RefreshTokenInterface.php.html @@ -136,7 +136,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Storage/ScopeInterface.php.html b/master/Storage/ScopeInterface.php.html index 38d7687f..89940c71 100644 --- a/master/Storage/ScopeInterface.php.html +++ b/master/Storage/ScopeInterface.php.html @@ -116,7 +116,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Storage/SessionInterface.php.html b/master/Storage/SessionInterface.php.html index 2e2b3a13..3c18a2fc 100644 --- a/master/Storage/SessionInterface.php.html +++ b/master/Storage/SessionInterface.php.html @@ -159,7 +159,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Storage/StorageInterface.php.html b/master/Storage/StorageInterface.php.html index dd422488..bf094bf6 100644 --- a/master/Storage/StorageInterface.php.html +++ b/master/Storage/StorageInterface.php.html @@ -114,7 +114,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Storage/dashboard.html b/master/Storage/dashboard.html index 638f1bd0..6e66b3a0 100644 --- a/master/Storage/dashboard.html +++ b/master/Storage/dashboard.html @@ -137,7 +137,7 @@
diff --git a/master/Storage/index.html b/master/Storage/index.html index 0d5cb0f7..3359cbff 100644 --- a/master/Storage/index.html +++ b/master/Storage/index.html @@ -333,7 +333,7 @@ High: 90% to 100%

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/TokenType/AbstractTokenType.php.html b/master/TokenType/AbstractTokenType.php.html index 520ab537..59709761 100644 --- a/master/TokenType/AbstractTokenType.php.html +++ b/master/TokenType/AbstractTokenType.php.html @@ -275,7 +275,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/TokenType/Bearer.php.html b/master/TokenType/Bearer.php.html index de2a82dc..7a78752e 100644 --- a/master/TokenType/Bearer.php.html +++ b/master/TokenType/Bearer.php.html @@ -211,7 +211,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/TokenType/MAC.php.html b/master/TokenType/MAC.php.html index 16ed7e64..02545cea 100644 --- a/master/TokenType/MAC.php.html +++ b/master/TokenType/MAC.php.html @@ -356,7 +356,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/TokenType/TokenTypeInterface.php.html b/master/TokenType/TokenTypeInterface.php.html index d89ec14a..36c865d2 100644 --- a/master/TokenType/TokenTypeInterface.php.html +++ b/master/TokenType/TokenTypeInterface.php.html @@ -155,7 +155,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/TokenType/dashboard.html b/master/TokenType/dashboard.html index c15834b1..79cf04cc 100644 --- a/master/TokenType/dashboard.html +++ b/master/TokenType/dashboard.html @@ -114,8 +114,8 @@ - determineAccessTokenInHeader66% - generateResponse83% + determineAccessTokenInHeader66% + generateResponse83% @@ -143,7 +143,7 @@
diff --git a/master/TokenType/index.html b/master/TokenType/index.html index 23c60593..be78e644 100644 --- a/master/TokenType/index.html +++ b/master/TokenType/index.html @@ -193,7 +193,7 @@ High: 90% to 100%

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Util/KeyAlgorithm/DefaultAlgorithm.php.html b/master/Util/KeyAlgorithm/DefaultAlgorithm.php.html index 51ce7df2..ebf0e22d 100644 --- a/master/Util/KeyAlgorithm/DefaultAlgorithm.php.html +++ b/master/Util/KeyAlgorithm/DefaultAlgorithm.php.html @@ -174,7 +174,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Util/KeyAlgorithm/KeyAlgorithmInterface.php.html b/master/Util/KeyAlgorithm/KeyAlgorithmInterface.php.html index 108f6e61..9e0e0ee0 100644 --- a/master/Util/KeyAlgorithm/KeyAlgorithmInterface.php.html +++ b/master/Util/KeyAlgorithm/KeyAlgorithmInterface.php.html @@ -112,7 +112,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Util/KeyAlgorithm/dashboard.html b/master/Util/KeyAlgorithm/dashboard.html index e83ac7a8..442dc1ac 100644 --- a/master/Util/KeyAlgorithm/dashboard.html +++ b/master/Util/KeyAlgorithm/dashboard.html @@ -138,7 +138,7 @@
diff --git a/master/Util/KeyAlgorithm/index.html b/master/Util/KeyAlgorithm/index.html index 0639ada2..528f214a 100644 --- a/master/Util/KeyAlgorithm/index.html +++ b/master/Util/KeyAlgorithm/index.html @@ -138,7 +138,7 @@ High: 90% to 100%

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Util/RedirectUri.php.html b/master/Util/RedirectUri.php.html index 36096c6f..75f0d60d 100644 --- a/master/Util/RedirectUri.php.html +++ b/master/Util/RedirectUri.php.html @@ -171,7 +171,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Util/SecureKey.php.html b/master/Util/SecureKey.php.html index f51a05ed..c67b4294 100644 --- a/master/Util/SecureKey.php.html +++ b/master/Util/SecureKey.php.html @@ -234,7 +234,7 @@ Dead Code

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/Util/dashboard.html b/master/Util/dashboard.html index 6aeb0e63..60079716 100644 --- a/master/Util/dashboard.html +++ b/master/Util/dashboard.html @@ -137,7 +137,7 @@
diff --git a/master/Util/index.html b/master/Util/index.html index 9d0de725..93a5a641 100644 --- a/master/Util/index.html +++ b/master/Util/index.html @@ -165,7 +165,7 @@ High: 90% to 100%

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.

diff --git a/master/dashboard.html b/master/dashboard.html index 3ce2f2e5..88440816 100644 --- a/master/dashboard.html +++ b/master/dashboard.html @@ -117,14 +117,14 @@ - setRequireClientSecret0% - getParameter0% - getRequest0% - getRequest0% - hasScope0% - determineAccessTokenInHeader66% - generateResponse83% - formatScopes88% + setRequireClientSecret0% + getParameter0% + getRequest0% + getRequest0% + hasScope0% + determineAccessTokenInHeader66% + generateResponse83% + formatScopes88% @@ -154,7 +154,7 @@
@@ -267,7 +267,7 @@ $(document).ready(function() { chart.yAxis.axisLabel('Method Complexity'); d3.select('#methodComplexity svg') - .datum(getComplexityData([[100,1,"AbstractServer::__construct<\/a>"],[100,2,"AbstractServer::setEventEmitter<\/a>"],[100,1,"AbstractServer::addEventListener<\/a>"],[100,1,"AbstractServer::getEventEmitter<\/a>"],[100,1,"AbstractServer::setRequest<\/a>"],[100,2,"AbstractServer::getRequest<\/a>"],[100,1,"AbstractServer::setClientStorage<\/a>"],[100,1,"AbstractServer::setSessionStorage<\/a>"],[100,1,"AbstractServer::setAccessTokenStorage<\/a>"],[100,1,"AbstractServer::setRefreshTokenStorage<\/a>"],[100,1,"AbstractServer::setAuthCodeStorage<\/a>"],[100,1,"AbstractServer::setScopeStorage<\/a>"],[100,1,"AbstractServer::getClientStorage<\/a>"],[100,1,"AbstractServer::getScopeStorage<\/a>"],[100,1,"AbstractServer::getSessionStorage<\/a>"],[100,1,"AbstractServer::getRefreshTokenStorage<\/a>"],[100,1,"AbstractServer::getAccessTokenStorage<\/a>"],[100,1,"AbstractServer::getAuthCodeStorage<\/a>"],[100,1,"AbstractServer::setTokenType<\/a>"],[100,1,"AbstractServer::getTokenType<\/a>"],[100,1,"AbstractServer::getMacStorage<\/a>"],[100,1,"AbstractServer::setMacStorage<\/a>"],[100,1,"AuthorizationServer::__construct<\/a>"],[100,3,"AuthorizationServer::addGrantType<\/a>"],[100,1,"AuthorizationServer::hasGrantType<\/a>"],[100,1,"AuthorizationServer::getResponseTypes<\/a>"],[100,1,"AuthorizationServer::requireScopeParam<\/a>"],[100,1,"AuthorizationServer::scopeParamRequired<\/a>"],[100,1,"AuthorizationServer::setDefaultScope<\/a>"],[100,1,"AuthorizationServer::getDefaultScope<\/a>"],[100,1,"AuthorizationServer::stateParamRequired<\/a>"],[100,1,"AuthorizationServer::requireStateParam<\/a>"],[100,1,"AuthorizationServer::getScopeDelimiter<\/a>"],[100,1,"AuthorizationServer::setScopeDelimiter<\/a>"],[100,1,"AuthorizationServer::getAccessTokenTTL<\/a>"],[100,1,"AuthorizationServer::setAccessTokenTTL<\/a>"],[100,3,"AuthorizationServer::issueAccessToken<\/a>"],[100,2,"AuthorizationServer::getGrantType<\/a>"],[100,1,"AbstractTokenEntity::__construct<\/a>"],[100,1,"AbstractTokenEntity::setSession<\/a>"],[100,1,"AbstractTokenEntity::setExpireTime<\/a>"],[100,1,"AbstractTokenEntity::getExpireTime<\/a>"],[100,1,"AbstractTokenEntity::isExpired<\/a>"],[100,2,"AbstractTokenEntity::setId<\/a>"],[100,1,"AbstractTokenEntity::getId<\/a>"],[100,2,"AbstractTokenEntity::associateScope<\/a>"],[88.888888888889,4,"AbstractTokenEntity::formatScopes<\/a>"],[100,2,"AbstractTokenEntity::__toString<\/a>"],[100,1,"AbstractTokenEntity::expire<\/a>"],[100,1,"AbstractTokenEntity::save<\/a>"],[100,2,"AccessTokenEntity::getSession<\/a>"],[0,2,"AccessTokenEntity::hasScope<\/a>"],[100,2,"AccessTokenEntity::getScopes<\/a>"],[100,2,"AccessTokenEntity::save<\/a>"],[100,1,"AccessTokenEntity::expire<\/a>"],[100,1,"AuthCodeEntity::setRedirectUri<\/a>"],[100,1,"AuthCodeEntity::getRedirectUri<\/a>"],[100,2,"AuthCodeEntity::generateRedirectUri<\/a>"],[100,2,"AuthCodeEntity::getSession<\/a>"],[100,2,"AuthCodeEntity::getScopes<\/a>"],[100,2,"AuthCodeEntity::save<\/a>"],[100,1,"AuthCodeEntity::expire<\/a>"],[100,1,"ClientEntity::__construct<\/a>"],[100,1,"ClientEntity::getId<\/a>"],[100,1,"ClientEntity::getSecret<\/a>"],[100,1,"ClientEntity::getName<\/a>"],[100,1,"ClientEntity::getRedirectUri<\/a>"],[100,1,"RefreshTokenEntity::setAccessTokenId<\/a>"],[100,1,"RefreshTokenEntity::setAccessToken<\/a>"],[100,2,"RefreshTokenEntity::getAccessToken<\/a>"],[100,1,"RefreshTokenEntity::save<\/a>"],[100,1,"RefreshTokenEntity::expire<\/a>"],[100,1,"ScopeEntity::__construct<\/a>"],[100,1,"ScopeEntity::getId<\/a>"],[100,1,"ScopeEntity::getDescription<\/a>"],[100,1,"ScopeEntity::jsonSerialize<\/a>"],[100,1,"SessionEntity::__construct<\/a>"],[100,1,"SessionEntity::setId<\/a>"],[100,1,"SessionEntity::getId<\/a>"],[100,2,"SessionEntity::associateScope<\/a>"],[100,2,"SessionEntity::hasScope<\/a>"],[100,2,"SessionEntity::getScopes<\/a>"],[100,4,"SessionEntity::formatScopes<\/a>"],[100,1,"SessionEntity::associateAccessToken<\/a>"],[100,1,"SessionEntity::associateRefreshToken<\/a>"],[100,1,"SessionEntity::associateClient<\/a>"],[100,2,"SessionEntity::getClient<\/a>"],[100,1,"SessionEntity::setOwner<\/a>"],[100,1,"SessionEntity::getOwnerId<\/a>"],[100,1,"SessionEntity::getOwnerType<\/a>"],[100,2,"SessionEntity::save<\/a>"],[100,1,"ClientAuthenticationFailedEvent::__construct<\/a>"],[100,1,"ClientAuthenticationFailedEvent::getName<\/a>"],[0,1,"ClientAuthenticationFailedEvent::getRequest<\/a>"],[100,1,"SessionOwnerEvent::__construct<\/a>"],[100,1,"SessionOwnerEvent::getName<\/a>"],[100,1,"SessionOwnerEvent::getSession<\/a>"],[100,1,"UserAuthenticationFailedEvent::__construct<\/a>"],[100,1,"UserAuthenticationFailedEvent::getName<\/a>"],[0,1,"UserAuthenticationFailedEvent::getRequest<\/a>"],[100,1,"AccessDeniedException::__construct<\/a>"],[100,1,"InvalidClientException::__construct<\/a>"],[100,1,"InvalidCredentialsException::__construct<\/a>"],[100,1,"InvalidGrantException::__construct<\/a>"],[100,1,"InvalidRefreshException::__construct<\/a>"],[100,1,"InvalidRequestException::__construct<\/a>"],[100,1,"InvalidScopeException::__construct<\/a>"],[100,1,"OAuthException::__construct<\/a>"],[100,2,"OAuthException::shouldRedirect<\/a>"],[100,1,"OAuthException::getRedirectUri<\/a>"],[0,1,"OAuthException::getParameter<\/a>"],[100,11,"OAuthException::getHttpHeaders<\/a>"],[100,2,"ServerErrorException::__construct<\/a>"],[100,1,"UnauthorizedClientException::__construct<\/a>"],[100,1,"UnsupportedGrantTypeException::__construct<\/a>"],[100,1,"UnsupportedResponseTypeException::__construct<\/a>"],[100,1,"AbstractGrant::getIdentifier<\/a>"],[100,1,"AbstractGrant::setIdentifier<\/a>"],[100,1,"AbstractGrant::getResponseType<\/a>"],[100,2,"AbstractGrant::getAccessTokenTTL<\/a>"],[100,1,"AbstractGrant::setAccessTokenTTL<\/a>"],[100,1,"AbstractGrant::setAuthorizationServer<\/a>"],[100,11,"AbstractGrant::validateScopes<\/a>"],[100,3,"AbstractGrant::formatScopes<\/a>"],[100,1,"AuthCodeGrant::setAuthTokenTTL<\/a>"],[0,1,"AuthCodeGrant::setRequireClientSecret<\/a>"],[100,1,"AuthCodeGrant::shouldRequireClientSecret<\/a>"],[100,8,"AuthCodeGrant::checkAuthorizeParams<\/a>"],[100,2,"AuthCodeGrant::newAuthorizeRequest<\/a>"],[100,15,"AuthCodeGrant::completeFlow<\/a>"],[100,6,"ClientCredentialsGrant::completeFlow<\/a>"],[100,1,"PasswordGrant::setVerifyCredentialsCallback<\/a>"],[100,3,"PasswordGrant::getVerifyCredentialsCallback<\/a>"],[100,11,"PasswordGrant::completeFlow<\/a>"],[100,1,"RefreshTokenGrant::setRefreshTokenTTL<\/a>"],[100,1,"RefreshTokenGrant::getRefreshTokenTTL<\/a>"],[100,1,"RefreshTokenGrant::setRefreshTokenRotation<\/a>"],[100,1,"RefreshTokenGrant::shouldRotateRefreshTokens<\/a>"],[100,1,"RefreshTokenGrant::setRequireClientSecret<\/a>"],[100,1,"RefreshTokenGrant::shouldRequireClientSecret<\/a>"],[100,13,"RefreshTokenGrant::completeFlow<\/a>"],[100,1,"ResourceServer::__construct<\/a>"],[100,1,"ResourceServer::setIdKey<\/a>"],[100,1,"ResourceServer::getAccessToken<\/a>"],[100,4,"ResourceServer::isValidRequest<\/a>"],[100,6,"ResourceServer::determineAccessToken<\/a>"],[100,1,"AbstractStorage::setServer<\/a>"],[100,1,"AbstractStorage::getServer<\/a>"],[100,1,"AbstractTokenType::setServer<\/a>"],[100,1,"AbstractTokenType::setSession<\/a>"],[100,1,"AbstractTokenType::setParam<\/a>"],[100,2,"AbstractTokenType::getParam<\/a>"],[100,2,"Bearer::generateResponse<\/a>"],[66.666666666667,3,"Bearer::determineAccessTokenInHeader<\/a>"],[83.333333333333,2,"MAC::generateResponse<\/a>"],[100,13,"MAC::determineAccessTokenInHeader<\/a>"],[100,3,"MAC::anonymous function<\/a>"],[90,4,"MAC::hash_equals<\/a>"],[100,4,"DefaultAlgorithm::generate<\/a>"],[100,2,"RedirectUri::make<\/a>"],[100,1,"SecureKey::generate<\/a>"],[100,1,"SecureKey::setAlgorithm<\/a>"],[100,2,"SecureKey::getAlgorithm<\/a>"],[100,3,"EntityTrait::hydrate<\/a>"]], 'Method Complexity')) + .datum(getComplexityData([[100,1,"AbstractServer::__construct<\/a>"],[100,2,"AbstractServer::setEventEmitter<\/a>"],[100,1,"AbstractServer::addEventListener<\/a>"],[100,1,"AbstractServer::getEventEmitter<\/a>"],[100,1,"AbstractServer::setRequest<\/a>"],[100,2,"AbstractServer::getRequest<\/a>"],[100,1,"AbstractServer::setClientStorage<\/a>"],[100,1,"AbstractServer::setSessionStorage<\/a>"],[100,1,"AbstractServer::setAccessTokenStorage<\/a>"],[100,1,"AbstractServer::setRefreshTokenStorage<\/a>"],[100,1,"AbstractServer::setAuthCodeStorage<\/a>"],[100,1,"AbstractServer::setScopeStorage<\/a>"],[100,1,"AbstractServer::getClientStorage<\/a>"],[100,1,"AbstractServer::getScopeStorage<\/a>"],[100,1,"AbstractServer::getSessionStorage<\/a>"],[100,1,"AbstractServer::getRefreshTokenStorage<\/a>"],[100,1,"AbstractServer::getAccessTokenStorage<\/a>"],[100,1,"AbstractServer::getAuthCodeStorage<\/a>"],[100,1,"AbstractServer::setTokenType<\/a>"],[100,1,"AbstractServer::getTokenType<\/a>"],[100,1,"AbstractServer::getMacStorage<\/a>"],[100,1,"AbstractServer::setMacStorage<\/a>"],[100,1,"AuthorizationServer::__construct<\/a>"],[100,3,"AuthorizationServer::addGrantType<\/a>"],[100,1,"AuthorizationServer::hasGrantType<\/a>"],[100,1,"AuthorizationServer::getResponseTypes<\/a>"],[100,1,"AuthorizationServer::requireScopeParam<\/a>"],[100,1,"AuthorizationServer::scopeParamRequired<\/a>"],[100,1,"AuthorizationServer::setDefaultScope<\/a>"],[100,1,"AuthorizationServer::getDefaultScope<\/a>"],[100,1,"AuthorizationServer::stateParamRequired<\/a>"],[100,1,"AuthorizationServer::requireStateParam<\/a>"],[100,1,"AuthorizationServer::getScopeDelimiter<\/a>"],[100,1,"AuthorizationServer::setScopeDelimiter<\/a>"],[100,1,"AuthorizationServer::getAccessTokenTTL<\/a>"],[100,1,"AuthorizationServer::setAccessTokenTTL<\/a>"],[100,3,"AuthorizationServer::issueAccessToken<\/a>"],[100,2,"AuthorizationServer::getGrantType<\/a>"],[100,1,"AbstractTokenEntity::__construct<\/a>"],[100,1,"AbstractTokenEntity::setSession<\/a>"],[100,1,"AbstractTokenEntity::setExpireTime<\/a>"],[100,1,"AbstractTokenEntity::getExpireTime<\/a>"],[100,1,"AbstractTokenEntity::isExpired<\/a>"],[100,2,"AbstractTokenEntity::setId<\/a>"],[100,1,"AbstractTokenEntity::getId<\/a>"],[100,2,"AbstractTokenEntity::associateScope<\/a>"],[88.888888888889,4,"AbstractTokenEntity::formatScopes<\/a>"],[100,2,"AbstractTokenEntity::__toString<\/a>"],[100,1,"AbstractTokenEntity::expire<\/a>"],[100,1,"AbstractTokenEntity::save<\/a>"],[100,2,"AccessTokenEntity::getSession<\/a>"],[0,2,"AccessTokenEntity::hasScope<\/a>"],[100,2,"AccessTokenEntity::getScopes<\/a>"],[100,2,"AccessTokenEntity::save<\/a>"],[100,1,"AccessTokenEntity::expire<\/a>"],[100,1,"AuthCodeEntity::setRedirectUri<\/a>"],[100,1,"AuthCodeEntity::getRedirectUri<\/a>"],[100,2,"AuthCodeEntity::generateRedirectUri<\/a>"],[100,2,"AuthCodeEntity::getSession<\/a>"],[100,2,"AuthCodeEntity::getScopes<\/a>"],[100,2,"AuthCodeEntity::save<\/a>"],[100,1,"AuthCodeEntity::expire<\/a>"],[100,1,"ClientEntity::__construct<\/a>"],[100,1,"ClientEntity::getId<\/a>"],[100,1,"ClientEntity::getSecret<\/a>"],[100,1,"ClientEntity::getName<\/a>"],[100,1,"ClientEntity::getRedirectUri<\/a>"],[100,1,"RefreshTokenEntity::setAccessTokenId<\/a>"],[100,1,"RefreshTokenEntity::setAccessToken<\/a>"],[100,2,"RefreshTokenEntity::getAccessToken<\/a>"],[100,1,"RefreshTokenEntity::save<\/a>"],[100,1,"RefreshTokenEntity::expire<\/a>"],[100,1,"ScopeEntity::__construct<\/a>"],[100,1,"ScopeEntity::getId<\/a>"],[100,1,"ScopeEntity::getDescription<\/a>"],[100,1,"ScopeEntity::jsonSerialize<\/a>"],[100,1,"SessionEntity::__construct<\/a>"],[100,1,"SessionEntity::setId<\/a>"],[100,1,"SessionEntity::getId<\/a>"],[100,2,"SessionEntity::associateScope<\/a>"],[100,2,"SessionEntity::hasScope<\/a>"],[100,2,"SessionEntity::getScopes<\/a>"],[100,4,"SessionEntity::formatScopes<\/a>"],[100,1,"SessionEntity::associateAccessToken<\/a>"],[100,1,"SessionEntity::associateRefreshToken<\/a>"],[100,1,"SessionEntity::associateClient<\/a>"],[100,2,"SessionEntity::getClient<\/a>"],[100,1,"SessionEntity::setOwner<\/a>"],[100,1,"SessionEntity::getOwnerId<\/a>"],[100,1,"SessionEntity::getOwnerType<\/a>"],[100,2,"SessionEntity::save<\/a>"],[100,1,"ClientAuthenticationFailedEvent::__construct<\/a>"],[100,1,"ClientAuthenticationFailedEvent::getName<\/a>"],[0,1,"ClientAuthenticationFailedEvent::getRequest<\/a>"],[100,1,"SessionOwnerEvent::__construct<\/a>"],[100,1,"SessionOwnerEvent::getName<\/a>"],[100,1,"SessionOwnerEvent::getSession<\/a>"],[100,1,"UserAuthenticationFailedEvent::__construct<\/a>"],[100,1,"UserAuthenticationFailedEvent::getName<\/a>"],[0,1,"UserAuthenticationFailedEvent::getRequest<\/a>"],[100,1,"AccessDeniedException::__construct<\/a>"],[100,1,"InvalidClientException::__construct<\/a>"],[100,1,"InvalidCredentialsException::__construct<\/a>"],[100,1,"InvalidGrantException::__construct<\/a>"],[100,1,"InvalidRefreshException::__construct<\/a>"],[100,1,"InvalidRequestException::__construct<\/a>"],[100,1,"InvalidScopeException::__construct<\/a>"],[100,1,"OAuthException::__construct<\/a>"],[100,2,"OAuthException::shouldRedirect<\/a>"],[100,1,"OAuthException::getRedirectUri<\/a>"],[0,1,"OAuthException::getParameter<\/a>"],[100,11,"OAuthException::getHttpHeaders<\/a>"],[100,2,"ServerErrorException::__construct<\/a>"],[100,1,"UnauthorizedClientException::__construct<\/a>"],[100,1,"UnsupportedGrantTypeException::__construct<\/a>"],[100,1,"UnsupportedResponseTypeException::__construct<\/a>"],[100,1,"AbstractGrant::getIdentifier<\/a>"],[100,1,"AbstractGrant::setIdentifier<\/a>"],[100,1,"AbstractGrant::getResponseType<\/a>"],[100,2,"AbstractGrant::getAccessTokenTTL<\/a>"],[100,1,"AbstractGrant::setAccessTokenTTL<\/a>"],[100,1,"AbstractGrant::setAuthorizationServer<\/a>"],[100,11,"AbstractGrant::validateScopes<\/a>"],[100,3,"AbstractGrant::formatScopes<\/a>"],[100,1,"AuthCodeGrant::setAuthTokenTTL<\/a>"],[0,1,"AuthCodeGrant::setRequireClientSecret<\/a>"],[100,1,"AuthCodeGrant::shouldRequireClientSecret<\/a>"],[100,8,"AuthCodeGrant::checkAuthorizeParams<\/a>"],[100,2,"AuthCodeGrant::newAuthorizeRequest<\/a>"],[100,15,"AuthCodeGrant::completeFlow<\/a>"],[100,6,"ClientCredentialsGrant::completeFlow<\/a>"],[100,1,"PasswordGrant::setVerifyCredentialsCallback<\/a>"],[100,3,"PasswordGrant::getVerifyCredentialsCallback<\/a>"],[100,11,"PasswordGrant::completeFlow<\/a>"],[100,1,"RefreshTokenGrant::setRefreshTokenTTL<\/a>"],[100,1,"RefreshTokenGrant::getRefreshTokenTTL<\/a>"],[100,1,"RefreshTokenGrant::setRefreshTokenRotation<\/a>"],[100,1,"RefreshTokenGrant::shouldRotateRefreshTokens<\/a>"],[100,1,"RefreshTokenGrant::setRequireClientSecret<\/a>"],[100,1,"RefreshTokenGrant::shouldRequireClientSecret<\/a>"],[100,13,"RefreshTokenGrant::completeFlow<\/a>"],[100,1,"ResourceServer::__construct<\/a>"],[100,1,"ResourceServer::setIdKey<\/a>"],[100,1,"ResourceServer::getAccessToken<\/a>"],[100,4,"ResourceServer::isValidRequest<\/a>"],[100,6,"ResourceServer::determineAccessToken<\/a>"],[100,1,"AbstractStorage::setServer<\/a>"],[100,1,"AbstractStorage::getServer<\/a>"],[100,1,"AbstractTokenType::setServer<\/a>"],[100,1,"AbstractTokenType::setSession<\/a>"],[100,1,"AbstractTokenType::setParam<\/a>"],[100,2,"AbstractTokenType::getParam<\/a>"],[100,2,"Bearer::generateResponse<\/a>"],[66.666666666667,3,"Bearer::determineAccessTokenInHeader<\/a>"],[83.333333333333,2,"MAC::generateResponse<\/a>"],[100,13,"MAC::determineAccessTokenInHeader<\/a>"],[100,3,"MAC::anonymous function<\/a>"],[90,4,"MAC::hash_equals<\/a>"],[100,4,"DefaultAlgorithm::generate<\/a>"],[100,2,"RedirectUri::make<\/a>"],[100,1,"SecureKey::generate<\/a>"],[100,1,"SecureKey::setAlgorithm<\/a>"],[100,2,"SecureKey::getAlgorithm<\/a>"],[100,3,"EntityTrait::hydrate<\/a>"]], 'Method Complexity')) .transition() .duration(500) .call(chart); diff --git a/master/index.html b/master/index.html index aceb11ad..5c32ad76 100644 --- a/master/index.html +++ b/master/index.html @@ -360,7 +360,7 @@ High: 90% to 100%

- Generated by PHP_CodeCoverage 2.2.3 using PHP 5.5.21 and PHPUnit 4.3.5 at Sat Sep 26 15:44:14 UTC 2015. + Generated by PHP_CodeCoverage 2.2.4 using PHP 5.5.21 and PHPUnit 4.3.5 at Tue Oct 13 10:22:41 UTC 2015.