From f8038f73ff315746c993795693d38900d0e882e6 Mon Sep 17 00:00:00 2001 From: David Windell Date: Fri, 3 Aug 2012 10:40:46 +0200 Subject: [PATCH] cs fixes (braces) --- test/Adapter/Http/TestAsset/BasicAuthObjectResolver.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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