Completed
Pull Request — master (#23)
by vincent
04:12 queued 02:01
created
src/Search.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
                 throw new IncorrectParamException;
48 48
             }
49 49
             $params   = $this->tmdb->checkOptions($options);
50
-            $response = $this->tmdb->sendRequest(new HttpClient(new \GuzzleHttp\Client()), 'search/'.$item, $query, $params);
50
+            $response = $this->tmdb->sendRequest(new HttpClient(new \GuzzleHttp\Client()), 'search/' . $item, $query, $params);
51 51
 
52 52
             $this->page          = (int) $response->page;
53 53
             $this->total_pages   = (int) $response->total_pages;
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         try
90 90
         {
91 91
             $this->logger->debug('Starting search movie');
92
-            return $this->searchItem('movie', $query, $options, __NAMESPACE__."\\Results\\".'Movie');
92
+            return $this->searchItem('movie', $query, $options, __NAMESPACE__ . "\\Results\\" . 'Movie');
93 93
         }
94 94
         catch (TmdbException $ex)
95 95
         {
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
         try
110 110
         {
111 111
             $this->logger->debug('Starting search tv show');
112
-            return $this->searchItem('tv', $query, $options, __NAMESPACE__."\\Results\\".'TVShow');
112
+            return $this->searchItem('tv', $query, $options, __NAMESPACE__ . "\\Results\\" . 'TVShow');
113 113
         }
114 114
         catch (TmdbException $ex)
115 115
         {
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
         try
130 130
         {
131 131
             $this->logger->debug('Starting search collection');
132
-            return $this->searchItem('collection', $query, $options, __NAMESPACE__."\\Results\\".'Collection');
132
+            return $this->searchItem('collection', $query, $options, __NAMESPACE__ . "\\Results\\" . 'Collection');
133 133
         }
134 134
         catch (TmdbException $ex)
135 135
         {
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
         try
150 150
         {
151 151
             $this->logger->debug('Starting search people');
152
-            return $this->searchItem('people', $query, $options, __NAMESPACE__."\\Results\\".'People');
152
+            return $this->searchItem('people', $query, $options, __NAMESPACE__ . "\\Results\\" . 'People');
153 153
         }
154 154
         catch (TmdbException $ex)
155 155
         {
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
         try
170 170
         {
171 171
             $this->logger->debug('Starting search company');
172
-            return $this->searchItem('company', $query, $options, __NAMESPACE__."\\Results\\".'Company');
172
+            return $this->searchItem('company', $query, $options, __NAMESPACE__ . "\\Results\\" . 'Company');
173 173
         }
174 174
         catch (TmdbException $ex)
175 175
         {
Please login to merge, or discard this patch.