Merge pull request #467 from thephpleague/analysis-z4xMPE

Applied fixes from StyleCI
This commit is contained in:
Alex Bilbie
2016-03-15 22:55:33 +01:00
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -82,4 +82,4 @@ class ClientEntity implements ClientEntityInterface
{
return $this->secret !== null;
}
}
}
+2 -2
View File
@@ -9,8 +9,8 @@ class ScopeEntity implements ScopeEntityInterface
{
use EntityTrait;
function jsonSerialize()
public function jsonSerialize()
{
return $this->getIdentifier();
}
}
}
@@ -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();
@@ -22,7 +22,7 @@ class ScopeRepository implements ScopeRepositoryInterface
];
if (array_key_exists($scopeIdentifier, $scopes) === false) {
return null;
return;
}
$scope = new ScopeEntity();