Passed
Branch release/1.5.0 (3fa0b2)
by vincent
02:31
created
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.
src/Tmdb.php 1 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.