whitespace

This commit is contained in:
thefosk
2012-10-10 16:45:55 -07:00
parent 33ba91700b
commit 24d86fbedf
23 changed files with 24 additions and 37 deletions

2
main/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
LICENSE
README.md

View File

@@ -27,4 +27,4 @@
require_once(dirname(__FILE__) . "/http/HttpClient.php"); require_once(dirname(__FILE__) . "/http/HttpClient.php");
require_once(dirname(__FILE__) . "/http/MashapeResponse.php"); require_once(dirname(__FILE__) . "/http/MashapeResponse.php");
?> ?>

View File

@@ -4,4 +4,4 @@ interface Authentication {
public function handleParams(); public function handleParams();
} }
?> ?>

View File

@@ -37,4 +37,4 @@ class AuthenticationUtil {
} }
?> ?>

View File

@@ -18,7 +18,4 @@ class BasicAuthentication extends HeaderAuthentication {
return null; return null;
} }
} }
?> ?>

View File

@@ -17,6 +17,4 @@ class CustomHeaderAuthentication extends HeaderAuthentication {
return null; return null;
} }
} }
?> ?>

View File

@@ -6,4 +6,4 @@ abstract class HeaderAuthentication implements Authentication {
return null; return null;
} }
} }
?> ?>

View File

@@ -14,5 +14,4 @@ class MashapeAuthentication extends HeaderAuthentication {
return $this->headers; return $this->headers;
} }
} }
?> ?>

View File

@@ -21,7 +21,4 @@ class OAuth10aAuthentication extends OAuthAuthentication {
return $headers; return $headers;
} }
} }
?> ?>

View File

@@ -17,8 +17,4 @@ class OAuth2Authentication extends OAuthAuthentication {
return $params; return $params;
} }
} }
?> ?>

View File

@@ -37,6 +37,4 @@ class OAuthAuthentication implements Authentication {
return null; return null;
} }
} }
?> ?>

View File

@@ -17,5 +17,4 @@ class QueryAuthentication implements Authentication {
return $this->params; return $this->params;
} }
} }
?> ?>

View File

@@ -67,4 +67,4 @@ define("EXCEPTION_CURL",
define("EXCEPTION_SYSTEM_ERROR_CODE", 2000); define("EXCEPTION_SYSTEM_ERROR_CODE", 2000);
define("EXCEPTION_JSONDECODE_REQUEST", "Can't deserialize the response JSON: %s"); define("EXCEPTION_JSONDECODE_REQUEST", "Can't deserialize the response JSON: %s");
?> ?>

View File

@@ -34,4 +34,4 @@ class MashapeClientException extends Exception {
} }
?> ?>

View File

@@ -43,4 +43,4 @@ if (!function_exists('http-chunked-decode')) {
return ($hex == dechex($dec)); return ($hex == dechex($dec));
} }
?> ?>

View File

@@ -31,4 +31,4 @@ class ContentType
const JSON = "JSON"; const JSON = "JSON";
} }
?> ?>

View File

@@ -131,4 +131,4 @@ class HttpClient {
} }
} }
?> ?>

View File

@@ -33,4 +33,4 @@ class HttpMethod
const PATCH = "PATCH"; const PATCH = "PATCH";
} }
?> ?>

View File

@@ -89,3 +89,4 @@ class HttpUtils {
} }
} }
?>

View File

@@ -58,4 +58,4 @@ class MashapeResponse {
} }
} }
} }
?> ?>

View File

@@ -36,4 +36,4 @@ class UrlUtils {
} }
?> ?>

View File

@@ -37,4 +37,4 @@ if (!function_exists('json_decode')) {
} }
} }
?> ?>

View File

@@ -803,4 +803,4 @@ if (class_exists('PEAR_Error')) {
} }
?> ?>