Completed
Push — master ( cdce0d...12858e )
by Michael
03:29
created
src/Transifex.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * @param array           $options Transifex options array.
39
-     * @param ClientInterface $client  The HTTP client object.
39
+     * @param \GuzzleHttp\ClientInterface $client  The HTTP client object.
40 40
      */
41 41
     public function __construct(array $options = [], ClientInterface $client = null)
42 42
     {
@@ -85,9 +85,9 @@  discard block
 block discarded – undo
85 85
      * Get an option from the Transifex instance.
86 86
      *
87 87
      * @param string $key     The name of the option to get.
88
-     * @param mixed  $default The default value if the option is not set.
88
+     * @param string  $default The default value if the option is not set.
89 89
      *
90
-     * @return mixed The option value.
90
+     * @return string The option value.
91 91
      */
92 92
     public function getOption(string $key, $default = null)
93 93
     {
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      * Set an option for the Transifex instance.
99 99
      *
100 100
      * @param string $key   The name of the option to set.
101
-     * @param mixed  $value The option value to set.
101
+     * @param string  $value The option value to set.
102 102
      *
103 103
      * @return $this
104 104
      */
Please login to merge, or discard this patch.
src/TransifexObject.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 
38 38
     /**
39 39
      * @param array           $options Transifex options array.
40
-     * @param ClientInterface $client  The HTTP client object.
40
+     * @param \GuzzleHttp\ClientInterface $client  The HTTP client object.
41 41
      */
42 42
     public function __construct(array $options = [], ClientInterface $client = null)
43 43
     {
Please login to merge, or discard this patch.