Completed
Push — master ( 60656c...dd3387 )
by Byron
04:15 queued 02:12
created
src/Methods/GetLanguageNames.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/Methods/GetLanguagesForSpeak.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@  discard block
 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
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         $languages = [];
49 49
 
50 50
         foreach ($xml->string as $language) {
51
-           $languages[] = (string) $language;
51
+            $languages[] = (string) $language;
52 52
         }
53 53
 
54 54
         return $languages;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
         $languages = [];
49 49
 
50 50
         foreach ($xml->string as $language) {
51
-           $languages[] = (string) $language;
51
+           $languages[] = (string)$language;
52 52
         }
53 53
 
54 54
         return $languages;
Please login to merge, or discard this patch.