Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
cs fixes (braces)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwindell committed Aug 3, 2012
1 parent d5da77d commit f8038f7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/Adapter/Http/TestAsset/BasicAuthObjectResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand All @@ -32,6 +32,5 @@ public function resolve($username, $realm, $password = null) {
null,
array('Authentication failed.')
);

}
}

0 comments on commit f8038f7

Please sign in to comment.