Skip to content

Commit e78f3d2

Browse files
authored
Merge pull request #26 from matyx/master
Remove php end tag in all files (causes whitespaces on output)
2 parents 03a4762 + ceaafc2 commit e78f3d2

File tree

181 files changed

+0
-220
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+0
-220
lines changed

src/RecommApi/Client.php

-1
Original file line numberDiff line numberDiff line change
@@ -262,4 +262,3 @@ protected function formatQueryParameterValue($value) {
262262
}
263263

264264
}
265-
?>

src/RecommApi/Exceptions/ApiException.php

-2
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,3 @@
1111
*/
1212
class ApiException extends \Exception {
1313
}
14-
15-
?>

src/RecommApi/Exceptions/ApiTimeoutException.php

-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,3 @@ public function __construct($request, \Exception $previous = null) {
2323
parent::__construct($description, 28, $previous);
2424
}
2525
}
26-
?>

src/RecommApi/Exceptions/ResponseException.php

-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,3 @@ public function __construct($request, $status_code, $description, \Exception $pr
3232
parent::__construct($description, $status_code, $previous);
3333
}
3434
}
35-
?>

src/RecommApi/Exceptions/UnknownOptionalParameterException.php

-2
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,3 @@ public function __construct($par, \Exception $previous = null) {
2323
parent::__construct("Unknown parameter {$this->parameter} was given to the request", 0, $previous);
2424
}
2525
}
26-
27-
?>

src/RecommApi/Requests/AddBookmark.php

-1
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,3 @@ public function getBodyParameters() {
126126
}
127127

128128
}
129-
?>

src/RecommApi/Requests/AddCartAddition.php

-1
Original file line numberDiff line numberDiff line change
@@ -146,4 +146,3 @@ public function getBodyParameters() {
146146
}
147147

148148
}
149-
?>

src/RecommApi/Requests/AddDetailView.php

-1
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,3 @@ public function getBodyParameters() {
136136
}
137137

138138
}
139-
?>

src/RecommApi/Requests/AddGroup.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/AddItem.php

-1
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,3 @@ public function getBodyParameters() {
6565
}
6666

6767
}
68-
?>

src/RecommApi/Requests/AddItemProperty.php

-1
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,3 @@ public function getBodyParameters() {
8787
}
8888

8989
}
90-
?>

src/RecommApi/Requests/AddPurchase.php

-1
Original file line numberDiff line numberDiff line change
@@ -156,4 +156,3 @@ public function getBodyParameters() {
156156
}
157157

158158
}
159-
?>

src/RecommApi/Requests/AddRating.php

-1
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,3 @@ public function getBodyParameters() {
133133
}
134134

135135
}
136-
?>

src/RecommApi/Requests/AddSearchSynonym.php

-1
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,3 @@ public function getBodyParameters() {
101101
}
102102

103103
}
104-
?>

src/RecommApi/Requests/AddSeries.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/AddUser.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/AddUserProperty.php

-1
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,3 @@ public function getBodyParameters() {
8383
}
8484

8585
}
86-
?>

src/RecommApi/Requests/Batch.php

-1
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,3 @@ protected function requestToBatchArray($req) {
118118
return $bh;
119119
}
120120
}
121-
?>

src/RecommApi/Requests/DeleteAllSearchSynonyms.php

-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,3 @@ public function getBodyParameters() {
5858
}
5959

6060
}
61-
?>

src/RecommApi/Requests/DeleteBookmark.php

-1
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,3 @@ public function getBodyParameters() {
9696
}
9797

9898
}
99-
?>

src/RecommApi/Requests/DeleteCartAddition.php

-1
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,3 @@ public function getBodyParameters() {
9696
}
9797

9898
}
99-
?>

src/RecommApi/Requests/DeleteDetailView.php

-1
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,3 @@ public function getBodyParameters() {
9696
}
9797

9898
}
99-
?>

src/RecommApi/Requests/DeleteGroup.php

-1
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,3 @@ public function getBodyParameters() {
6565
}
6666

6767
}
68-
?>

src/RecommApi/Requests/DeleteItem.php

-1
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,3 @@ public function getBodyParameters() {
6666
}
6767

6868
}
69-
?>

src/RecommApi/Requests/DeleteItemProperty.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/DeleteMoreItems.php

-1
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,3 @@ public function getBodyParameters() {
6666
}
6767

6868
}
69-
?>

src/RecommApi/Requests/DeletePurchase.php

-1
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,3 @@ public function getBodyParameters() {
9696
}
9797

9898
}
99-
?>

src/RecommApi/Requests/DeleteRating.php

-1
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,3 @@ public function getBodyParameters() {
9696
}
9797

9898
}
99-
?>

src/RecommApi/Requests/DeleteSearchSynonym.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/DeleteSeries.php

-1
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,3 @@ public function getBodyParameters() {
6565
}
6666

6767
}
68-
?>

src/RecommApi/Requests/DeleteUser.php

-1
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,3 @@ public function getBodyParameters() {
6565
}
6666

6767
}
68-
?>

src/RecommApi/Requests/DeleteUserProperty.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/DeleteViewPortion.php

-1
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,3 @@ public function getBodyParameters() {
9696
}
9797

9898
}
99-
?>

src/RecommApi/Requests/GetItemPropertyInfo.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/GetItemValues.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/GetUserPropertyInfo.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/GetUserValues.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/InsertToGroup.php

-1
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,3 @@ public function getBodyParameters() {
102102
}
103103

104104
}
105-
?>

src/RecommApi/Requests/InsertToSeries.php

-1
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,3 @@ public function getBodyParameters() {
109109
}
110110

111111
}
112-
?>

src/RecommApi/Requests/ListGroupItems.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/ListGroups.php

-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,3 @@ public function getBodyParameters() {
5858
}
5959

6060
}
61-
?>

src/RecommApi/Requests/ListItemBookmarks.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/ListItemCartAdditions.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/ListItemDetailViews.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/ListItemProperties.php

-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,3 @@ public function getBodyParameters() {
5858
}
5959

6060
}
61-
?>

src/RecommApi/Requests/ListItemPurchases.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/ListItemRatings.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/ListItemViewPortions.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/ListItems.php

-1
Original file line numberDiff line numberDiff line change
@@ -190,4 +190,3 @@ public function getBodyParameters() {
190190
}
191191

192192
}
193-
?>

src/RecommApi/Requests/ListSearchSynonyms.php

-1
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,3 @@ public function getBodyParameters() {
9292
}
9393

9494
}
95-
?>

src/RecommApi/Requests/ListSeries.php

-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,3 @@ public function getBodyParameters() {
5858
}
5959

6060
}
61-
?>

src/RecommApi/Requests/ListSeriesItems.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/ListUserBookmarks.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/ListUserCartAdditions.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/ListUserDetailViews.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/ListUserProperties.php

-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,3 @@ public function getBodyParameters() {
5858
}
5959

6060
}
61-
?>

src/RecommApi/Requests/ListUserPurchases.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/ListUserRatings.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/ListUserViewPortions.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,3 @@ public function getBodyParameters() {
6464
}
6565

6666
}
67-
?>

src/RecommApi/Requests/ListUsers.php

-1
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,3 @@ public function getBodyParameters() {
178178
}
179179

180180
}
181-
?>

src/RecommApi/Requests/MergeUsers.php

-1
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,3 @@ public function getBodyParameters() {
9595
}
9696

9797
}
98-
?>

src/RecommApi/Requests/RecommendItemsToItem.php

-1
Original file line numberDiff line numberDiff line change
@@ -379,4 +379,3 @@ public function getBodyParameters() {
379379
}
380380

381381
}
382-
?>

src/RecommApi/Requests/RecommendItemsToUser.php

-1
Original file line numberDiff line numberDiff line change
@@ -339,4 +339,3 @@ public function getBodyParameters() {
339339
}
340340

341341
}
342-
?>

src/RecommApi/Requests/RecommendNextItems.php

-1
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,3 @@ public function getBodyParameters() {
8181
}
8282

8383
}
84-
?>

src/RecommApi/Requests/RecommendUsersToItem.php

-1
Original file line numberDiff line numberDiff line change
@@ -293,4 +293,3 @@ public function getBodyParameters() {
293293
}
294294

295295
}
296-
?>

src/RecommApi/Requests/RecommendUsersToUser.php

-1
Original file line numberDiff line numberDiff line change
@@ -323,4 +323,3 @@ public function getBodyParameters() {
323323
}
324324

325325
}
326-
?>

src/RecommApi/Requests/RemoveFromGroup.php

-1
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,3 @@ public function getBodyParameters() {
7878
}
7979

8080
}
81-
?>

src/RecommApi/Requests/RemoveFromSeries.php

-1
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,3 @@ public function getBodyParameters() {
8585
}
8686

8787
}
88-
?>

src/RecommApi/Requests/Request.php

-2
Original file line numberDiff line numberDiff line change
@@ -97,5 +97,3 @@ public function setEnsureHttps($ensure_https)
9797
$this->ensure_https = $ensure_https;
9898
}
9999
}
100-
101-
?>

src/RecommApi/Requests/ResetDatabase.php

-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,3 @@ public function getBodyParameters() {
5858
}
5959

6060
}
61-
?>

src/RecommApi/Requests/SearchItems.php

-1
Original file line numberDiff line numberDiff line change
@@ -307,4 +307,3 @@ public function getBodyParameters() {
307307
}
308308

309309
}
310-
?>

src/RecommApi/Requests/SetItemValues.php

-1
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,3 @@ public function getPath() {
6060
return "/{databaseId}/items/{$this->item_id}";
6161
}
6262
}
63-
?>

src/RecommApi/Requests/SetUserValues.php

-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,3 @@ public function getPath() {
5858
return "/{databaseId}/users/{$this->user_id}";
5959
}
6060
}
61-
?>

src/RecommApi/Requests/SetValues.php

-1
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,3 @@ public function getBodyParameters() {
104104
}
105105

106106
}
107-
?>

src/RecommApi/Requests/SetViewPortion.php

-1
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,3 @@ public function getBodyParameters() {
144144
}
145145

146146
}
147-
?>

src/RecommApi/Requests/UpdateMoreItems.php

-1
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,3 @@ public function getBodyParameters() {
7979
}
8080

8181
}
82-
?>

src/RecommApi/Util/Util.php

-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ public static function sliceDbName($uri) {
1919
return $uri;
2020
}
2121
}
22-
?>

tests/AddBookmarkTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ protected function createRequest($user_id, $item_id, $optional=array()) {
88
return new AddBookmark($user_id, $item_id, $optional);
99
}
1010
}
11-
?>

0 commit comments

Comments
 (0)