From 24d86fbedf91686b1db9220524edf5eed48a0696 Mon Sep 17 00:00:00 2001 From: thefosk Date: Wed, 10 Oct 2012 16:45:55 -0700 Subject: [PATCH] whitespace --- main/.gitignore | 2 ++ main/mashape/MashapeClient.php | 2 +- main/mashape/authentication/Authentication.php | 2 +- main/mashape/authentication/AuthenticationUtil.php | 2 +- main/mashape/authentication/BasicAuthentication.php | 5 +---- main/mashape/authentication/CustomHeaderAuthentication.php | 4 +--- main/mashape/authentication/HeaderAuthentication.php | 2 +- main/mashape/authentication/MashapeAuthentication.php | 3 +-- main/mashape/authentication/OAuth10aAuthentication.php | 5 +---- main/mashape/authentication/OAuth2Authentication.php | 6 +----- main/mashape/authentication/OAuthAuthentication.php | 4 +--- main/mashape/authentication/QueryAuthentication.php | 3 +-- main/mashape/exceptions/ExceptionConstants.php | 2 +- main/mashape/exceptions/MashapeClientException.php | 2 +- main/mashape/http/Chunked.php | 2 +- main/mashape/http/ContentType.php | 2 +- main/mashape/http/HttpClient.php | 2 +- main/mashape/http/HttpMethod.php | 2 +- main/mashape/http/HttpUtils.php | 1 + main/mashape/http/MashapeResponse.php | 2 +- main/mashape/http/UrlUtils.php | 2 +- main/mashape/json/Json.php | 2 +- main/mashape/json/Services_JSON.php | 2 +- 23 files changed, 24 insertions(+), 37 deletions(-) create mode 100644 main/.gitignore diff --git a/main/.gitignore b/main/.gitignore new file mode 100644 index 0000000..f0f644e --- /dev/null +++ b/main/.gitignore @@ -0,0 +1,2 @@ +LICENSE +README.md diff --git a/main/mashape/MashapeClient.php b/main/mashape/MashapeClient.php index 6c45615..742e87b 100755 --- a/main/mashape/MashapeClient.php +++ b/main/mashape/MashapeClient.php @@ -27,4 +27,4 @@ require_once(dirname(__FILE__) . "/http/HttpClient.php"); require_once(dirname(__FILE__) . "/http/MashapeResponse.php"); -?> +?> \ No newline at end of file diff --git a/main/mashape/authentication/Authentication.php b/main/mashape/authentication/Authentication.php index 5a3bc14..125f1aa 100644 --- a/main/mashape/authentication/Authentication.php +++ b/main/mashape/authentication/Authentication.php @@ -4,4 +4,4 @@ interface Authentication { public function handleParams(); } -?> +?> \ No newline at end of file diff --git a/main/mashape/authentication/AuthenticationUtil.php b/main/mashape/authentication/AuthenticationUtil.php index 10b56df..b2c0918 100755 --- a/main/mashape/authentication/AuthenticationUtil.php +++ b/main/mashape/authentication/AuthenticationUtil.php @@ -37,4 +37,4 @@ class AuthenticationUtil { } -?> +?> \ No newline at end of file diff --git a/main/mashape/authentication/BasicAuthentication.php b/main/mashape/authentication/BasicAuthentication.php index 5c50be5..bf87d07 100644 --- a/main/mashape/authentication/BasicAuthentication.php +++ b/main/mashape/authentication/BasicAuthentication.php @@ -18,7 +18,4 @@ class BasicAuthentication extends HeaderAuthentication { return null; } } -?> - - - +?> \ No newline at end of file diff --git a/main/mashape/authentication/CustomHeaderAuthentication.php b/main/mashape/authentication/CustomHeaderAuthentication.php index c1e1345..05cc0ab 100644 --- a/main/mashape/authentication/CustomHeaderAuthentication.php +++ b/main/mashape/authentication/CustomHeaderAuthentication.php @@ -17,6 +17,4 @@ class CustomHeaderAuthentication extends HeaderAuthentication { return null; } } -?> - - +?> \ No newline at end of file diff --git a/main/mashape/authentication/HeaderAuthentication.php b/main/mashape/authentication/HeaderAuthentication.php index 242f468..020c144 100644 --- a/main/mashape/authentication/HeaderAuthentication.php +++ b/main/mashape/authentication/HeaderAuthentication.php @@ -6,4 +6,4 @@ abstract class HeaderAuthentication implements Authentication { return null; } } -?> +?> \ No newline at end of file diff --git a/main/mashape/authentication/MashapeAuthentication.php b/main/mashape/authentication/MashapeAuthentication.php index 82d0582..d864ba0 100644 --- a/main/mashape/authentication/MashapeAuthentication.php +++ b/main/mashape/authentication/MashapeAuthentication.php @@ -14,5 +14,4 @@ class MashapeAuthentication extends HeaderAuthentication { return $this->headers; } } -?> - +?> \ No newline at end of file diff --git a/main/mashape/authentication/OAuth10aAuthentication.php b/main/mashape/authentication/OAuth10aAuthentication.php index 04f8d34..8b37b78 100644 --- a/main/mashape/authentication/OAuth10aAuthentication.php +++ b/main/mashape/authentication/OAuth10aAuthentication.php @@ -21,7 +21,4 @@ class OAuth10aAuthentication extends OAuthAuthentication { return $headers; } } -?> - - - +?> \ No newline at end of file diff --git a/main/mashape/authentication/OAuth2Authentication.php b/main/mashape/authentication/OAuth2Authentication.php index 60f9b12..6a4c0a2 100644 --- a/main/mashape/authentication/OAuth2Authentication.php +++ b/main/mashape/authentication/OAuth2Authentication.php @@ -17,8 +17,4 @@ class OAuth2Authentication extends OAuthAuthentication { return $params; } } -?> - - - - +?> \ No newline at end of file diff --git a/main/mashape/authentication/OAuthAuthentication.php b/main/mashape/authentication/OAuthAuthentication.php index c4af9dd..e0a915a 100644 --- a/main/mashape/authentication/OAuthAuthentication.php +++ b/main/mashape/authentication/OAuthAuthentication.php @@ -37,6 +37,4 @@ class OAuthAuthentication implements Authentication { return null; } } -?> - - +?> \ No newline at end of file diff --git a/main/mashape/authentication/QueryAuthentication.php b/main/mashape/authentication/QueryAuthentication.php index 3693219..6e3538d 100644 --- a/main/mashape/authentication/QueryAuthentication.php +++ b/main/mashape/authentication/QueryAuthentication.php @@ -17,5 +17,4 @@ class QueryAuthentication implements Authentication { return $this->params; } } -?> - +?> \ No newline at end of file diff --git a/main/mashape/exceptions/ExceptionConstants.php b/main/mashape/exceptions/ExceptionConstants.php index 0b84ce2..c8d4d0d 100755 --- a/main/mashape/exceptions/ExceptionConstants.php +++ b/main/mashape/exceptions/ExceptionConstants.php @@ -67,4 +67,4 @@ define("EXCEPTION_CURL", define("EXCEPTION_SYSTEM_ERROR_CODE", 2000); define("EXCEPTION_JSONDECODE_REQUEST", "Can't deserialize the response JSON: %s"); -?> +?> \ No newline at end of file diff --git a/main/mashape/exceptions/MashapeClientException.php b/main/mashape/exceptions/MashapeClientException.php index 5fab1ca..24c2aad 100755 --- a/main/mashape/exceptions/MashapeClientException.php +++ b/main/mashape/exceptions/MashapeClientException.php @@ -34,4 +34,4 @@ class MashapeClientException extends Exception { } -?> +?> \ No newline at end of file diff --git a/main/mashape/http/Chunked.php b/main/mashape/http/Chunked.php index 24df1c7..cef7f9d 100755 --- a/main/mashape/http/Chunked.php +++ b/main/mashape/http/Chunked.php @@ -43,4 +43,4 @@ if (!function_exists('http-chunked-decode')) { return ($hex == dechex($dec)); } -?> +?> \ No newline at end of file diff --git a/main/mashape/http/ContentType.php b/main/mashape/http/ContentType.php index 803f3fe..6b29338 100755 --- a/main/mashape/http/ContentType.php +++ b/main/mashape/http/ContentType.php @@ -31,4 +31,4 @@ class ContentType const JSON = "JSON"; } -?> +?> \ No newline at end of file diff --git a/main/mashape/http/HttpClient.php b/main/mashape/http/HttpClient.php index 0209684..319a1aa 100755 --- a/main/mashape/http/HttpClient.php +++ b/main/mashape/http/HttpClient.php @@ -131,4 +131,4 @@ class HttpClient { } } -?> +?> \ No newline at end of file diff --git a/main/mashape/http/HttpMethod.php b/main/mashape/http/HttpMethod.php index 3984db6..6cfe216 100755 --- a/main/mashape/http/HttpMethod.php +++ b/main/mashape/http/HttpMethod.php @@ -33,4 +33,4 @@ class HttpMethod const PATCH = "PATCH"; } -?> +?> \ No newline at end of file diff --git a/main/mashape/http/HttpUtils.php b/main/mashape/http/HttpUtils.php index ada4849..af1c57f 100644 --- a/main/mashape/http/HttpUtils.php +++ b/main/mashape/http/HttpUtils.php @@ -89,3 +89,4 @@ class HttpUtils { } } +?> \ No newline at end of file diff --git a/main/mashape/http/MashapeResponse.php b/main/mashape/http/MashapeResponse.php index 76ce484..45c6ba2 100644 --- a/main/mashape/http/MashapeResponse.php +++ b/main/mashape/http/MashapeResponse.php @@ -58,4 +58,4 @@ class MashapeResponse { } } } -?> +?> \ No newline at end of file diff --git a/main/mashape/http/UrlUtils.php b/main/mashape/http/UrlUtils.php index fe842ef..34b0151 100755 --- a/main/mashape/http/UrlUtils.php +++ b/main/mashape/http/UrlUtils.php @@ -36,4 +36,4 @@ class UrlUtils { } -?> +?> \ No newline at end of file diff --git a/main/mashape/json/Json.php b/main/mashape/json/Json.php index d950d06..d1b05aa 100755 --- a/main/mashape/json/Json.php +++ b/main/mashape/json/Json.php @@ -37,4 +37,4 @@ if (!function_exists('json_decode')) { } } -?> +?> \ No newline at end of file diff --git a/main/mashape/json/Services_JSON.php b/main/mashape/json/Services_JSON.php index 8f2eabd..7795908 100755 --- a/main/mashape/json/Services_JSON.php +++ b/main/mashape/json/Services_JSON.php @@ -803,4 +803,4 @@ if (class_exists('PEAR_Error')) { } -?> +?> \ No newline at end of file