Skip to content

Commit

Permalink
Merge pull request #3 from cwhite92/analysis-zOMVkW
Browse files Browse the repository at this point in the history
Applied fixes from StyleCI
  • Loading branch information
Chris White committed Mar 24, 2016
2 parents f51f6c3 + 9b719ac commit 26106c9
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 23 deletions.
2 changes: 1 addition & 1 deletion src/Bucket.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ public function getType()
{
return $this->type;
}
}
}
2 changes: 1 addition & 1 deletion src/ErrorHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ public static function handleErrorResponse($response)

throw new $exceptionClass('Received error from B2: '.$responseJson['message']);
}
}
}
3 changes: 1 addition & 2 deletions src/Exceptions/B2Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@

class B2Exception extends \Exception
{

}
}
3 changes: 1 addition & 2 deletions src/Exceptions/BadJsonException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@

class BadJsonException extends \Exception
{

}
}
3 changes: 1 addition & 2 deletions src/Exceptions/BadValueException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@

class BadValueException extends \Exception
{

}
}
3 changes: 1 addition & 2 deletions src/Exceptions/BucketAlreadyExistsException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@

class BucketAlreadyExistsException extends \Exception
{

}
}
3 changes: 1 addition & 2 deletions src/Exceptions/BucketNotEmptyException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@

class BucketNotEmptyException extends \Exception
{

}
}
3 changes: 1 addition & 2 deletions src/Exceptions/FileNotPresentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@

class FileNotPresentException extends \Exception
{

}
}
3 changes: 1 addition & 2 deletions src/Exceptions/NotFoundException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@

class NotFoundException extends \Exception
{

}
}
3 changes: 1 addition & 2 deletions src/Exceptions/ValidationException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@

class ValidationException extends \Exception
{

}
}
3 changes: 1 addition & 2 deletions src/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,4 @@ public function getInfo()
{
return $this->info;
}

}
}
2 changes: 1 addition & 1 deletion src/Http/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ public function request($method, $uri = null, array $options = [], $asJson = tru

return $response->getBody()->getContents();
}
}
}
2 changes: 1 addition & 1 deletion tests/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -524,4 +524,4 @@ public function testDeletingNonExistentFileThrowsException()
'FileName' => 'fileName'
]));
}
}
}
2 changes: 1 addition & 1 deletion tests/TestHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ protected function buildResponseFromStub($statusCode, array $headers = [], $resp

return new \GuzzleHttp\Psr7\Response($statusCode, $headers, $response);
}
}
}

0 comments on commit 26106c9

Please sign in to comment.