Completed
Push — master ( 46457b...75f199 )
by Byron
02:07
created
src/Methods/GetTranslations.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,6 @@
 block discarded – undo
60 60
      * @param $text
61 61
      * @param $to
62 62
      * @param null $from
63
-     * @param string $contentType
64 63
      */
65 64
     public function __construct($text, $to, $from, $maxTranslations = 5, TranslateOptions $options = null)
66 65
     {
Please login to merge, or discard this patch.
src/Responses/GetTranslationsResponse.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of the badams\MicrosoftTranslator library
4
- *
5
- * @license http://opensource.org/licenses/MIT
6
- * @link https://github.com/badams/microsoft-translator
7
- * @package badams/microsoft-translator
8
- *
9
- * For the full copyright and license information, please view the LICENSE
10
- * file that was distributed with this source code.
11
- */
3
+     * This file is part of the badams\MicrosoftTranslator library
4
+     *
5
+     * @license http://opensource.org/licenses/MIT
6
+     * @link https://github.com/badams/microsoft-translator
7
+     * @package badams/microsoft-translator
8
+     *
9
+     * For the full copyright and license information, please view the LICENSE
10
+     * file that was distributed with this source code.
11
+     */
12 12
 
13 13
 namespace badams\MicrosoftTranslator\Methods;
14 14
 
Please login to merge, or discard this patch.
src/Responses/TranslationMatch.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of the badams\MicrosoftTranslator library
4
- *
5
- * @license http://opensource.org/licenses/MIT
6
- * @link https://github.com/badams/microsoft-translator
7
- * @package badams/microsoft-translator
8
- *
9
- * For the full copyright and license information, please view the LICENSE
10
- * file that was distributed with this source code.
11
- */
3
+     * This file is part of the badams\MicrosoftTranslator library
4
+     *
5
+     * @license http://opensource.org/licenses/MIT
6
+     * @link https://github.com/badams/microsoft-translator
7
+     * @package badams/microsoft-translator
8
+     *
9
+     * For the full copyright and license information, please view the LICENSE
10
+     * file that was distributed with this source code.
11
+     */
12 12
 
13 13
 namespace badams\MicrosoftTranslator\Methods;
14 14
 
Please login to merge, or discard this patch.
src/MicrosoftTranslator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -276,6 +276,6 @@
 block discarded – undo
276 276
      */
277 277
     public function getTranslations($text, $to, $from, $maxTranslations = 5, TranslateOptions $options = null)
278 278
     {
279
-        return $this->execute(new GetTranslations($text, $to, $from, $maxTranslations,  $options));
279
+        return $this->execute(new GetTranslations($text, $to, $from, $maxTranslations, $options));
280 280
     }
281 281
 }
282 282
\ No newline at end of file
Please login to merge, or discard this patch.