Passed
Branch release/1.5.0 (3fa0b2)
by vincent
02:31
created
src/Abstracts/Item.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,7 @@
 block discarded – undo
36 36
             $this->conf   = $this->tmdb->getConfiguration();
37 37
             $this->params = $this->tmdb->checkOptions($options);
38 38
             $this->data   = $this->tmdb->sendRequest(new HttpClient(new \GuzzleHttp\Client()), $item_name.'/'.(int) $item_id, null, $this->params);
39
-        }
40
-        catch (TmdbException $ex)
39
+        } catch (TmdbException $ex)
41 40
         {
42 41
             throw $ex;
43 42
         }
Please login to merge, or discard this patch.
src/Catalog.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 
41 41
     /**
42 42
      * Constructor
43
-     * @param vfalies\tmdb\Interfaces\TmdbInterface $tmdb
43
+     * @param TmdbInterface $tmdb
44 44
      */
45 45
     public function __construct(TmdbInterface $tmdb)
46 46
     {
Please login to merge, or discard this patch.
src/Catalogs/Jobs.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     /**
45 45
      * Get job list
46 46
      * @param array $options
47
-     * @return \Generator|\stdClass
47
+     * @return \Generator
48 48
      * @throws \vfalies\tmdb\Catalogs\TmdbException
49 49
      */
50 50
     public function getList(array $options = array())
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,8 +66,7 @@
 block discarded – undo
66 66
                     yield $result;
67 67
                 }
68 68
             }
69
-        }
70
-        catch (TmdbException $ex)
69
+        } catch (TmdbException $ex)
71 70
         {
72 71
             throw $ex;
73 72
         }
Please login to merge, or discard this patch.
src/Items/Company.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
 
117 117
     /**
118 118
      * Company movies list
119
-     * @return \Generator|Results\Movie
119
+     * @return \Generator
120 120
      */
121 121
     public function getMovies()
122 122
     {
Please login to merge, or discard this patch.
src/Tmdb.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -166,8 +166,7 @@
 block discarded – undo
166 166
                 $this->configuration = $this->sendRequest(new HttpClient(new \GuzzleHttp\Client()), 'configuration');
167 167
             }
168 168
             return $this->configuration;
169
-        }
170
-        catch (TmdbException $ex)
169
+        } catch (TmdbException $ex)
171 170
         {
172 171
             throw $ex;
173 172
         }
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
     /**
90 90
      * Constructor
91 91
      * @param string $api_key TMDB API Key
92
-     * @param string $version Version of API (Not yet used)
92
+     * @param integer $version Version of API (Not yet used)
93 93
      * @param LoggerInterface $logger Logger used in the class
94 94
      */
95 95
     public function __construct($api_key, $version = 3, LoggerInterface $logger)
Please login to merge, or discard this patch.
src/Search.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -92,8 +92,7 @@  discard block
 block discarded – undo
92 92
             $this->total_results = (int) $response->total_results;
93 93
 
94 94
             return $this->searchItemGenerator($response->results, $result_class);
95
-        }
96
-        catch (TmdbException $ex)
95
+        } catch (TmdbException $ex)
97 96
         {
98 97
             throw $ex;
99 98
         }
@@ -182,8 +181,7 @@  discard block
 block discarded – undo
182 181
         {
183 182
             $this->logger->debug('Starting search people');
184 183
             return $this->searchItem('people', $query, $options, Results\People::class);
185
-        }
186
-        catch (TmdbException $ex)
184
+        } catch (TmdbException $ex)
187 185
         {
188 186
             throw $ex;
189 187
         }
@@ -202,8 +200,7 @@  discard block
 block discarded – undo
202 200
         {
203 201
             $this->logger->debug('Starting search company');
204 202
             return $this->searchItem('people', $query, $options, Results\Company::class);
205
-        }
206
-        catch (TmdbException $ex)
203
+        } catch (TmdbException $ex)
207 204
         {
208 205
             throw $ex;
209 206
         }
Please login to merge, or discard this patch.
src/Factory.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     /**
37 37
      * Create
38 38
      * @param array $loggerConf
39
-     * @return \static
39
+     * @return Factory
40 40
      */
41 41
     public static function create($loggerConf = ['builder' => 'NullLogger', 'config' => []])
42 42
     {
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      * Get Tmdb object
51 51
      * @param string $api_key API Key
52 52
      * @param int $version API Version (not yet used)
53
-     * @return TmdbInterface
53
+     * @return Tmdb
54 54
      */
55 55
     public function getTmdb($api_key, $version = 3)
56 56
     {
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      * Get Builder
62 62
      * @param string $builder
63 63
      * @param array $args
64
-     * @return type
64
+     * @return LoggerBuilderInterface
65 65
      */
66 66
     public function getBuilder($builder, array $args = [])
67 67
     {
Please login to merge, or discard this patch.