Applied fixes from StyleCI

This commit is contained in:
Alex Bilbie 2016-03-15 17:54:45 -04:00 committed by StyleCI Bot
parent 5bbf703711
commit 079ed0040a
4 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ class ScopeEntity implements ScopeEntityInterface
{
use EntityTrait;
function jsonSerialize()
public function jsonSerialize()
{
return $this->getIdentifier();
}

View File

@ -22,7 +22,7 @@ class ClientRepository implements ClientRepositoryInterface
// Check if client is registered
if (array_key_exists($clientIdentifier, $clients) === false) {
return null;
return;
}
$client = new ClientEntity();

View File

@ -22,7 +22,7 @@ class ScopeRepository implements ScopeRepositoryInterface
];
if (array_key_exists($scopeIdentifier, $scopes) === false) {
return null;
return;
}
$scope = new ScopeEntity();