diff --git a/test/Adapter/Http/TestAsset/BasicAuthObjectResolver.php b/test/Adapter/Http/TestAsset/BasicAuthObjectResolver.php index 7b275c8..87e81fc 100644 --- a/test/Adapter/Http/TestAsset/BasicAuthObjectResolver.php +++ b/test/Adapter/Http/TestAsset/BasicAuthObjectResolver.php @@ -15,8 +15,8 @@ class BasicAuthObjectResolver implements ResolverInterface { - public function resolve($username, $realm, $password = null) { - + public function resolve($username, $realm, $password = null) + { if ($username == 'Bryce' && $password == 'ThisIsNotMyPassword') { $identity = new \stdClass(); @@ -32,6 +32,5 @@ public function resolve($username, $realm, $password = null) { null, array('Authentication failed.') ); - } } \ No newline at end of file