Passed
Push — master ( 82b8bb...ff0cce )
by Sebastian
03:28
created
localization/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     $autoload = realpath($root.'/../vendor/autoload.php');
14 14
     
15 15
     // we need the autoloader to be present
16
-    if(!file_exists($autoload)) {
16
+    if (!file_exists($autoload)) {
17 17
         die('<b>ERROR:</b> Autoloader not present. Run composer update first.');
18 18
     }
19 19
     
Please login to merge, or discard this patch.
example/index.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@
 block discarded – undo
16 16
         die('<b>ERROR:</b> Autoloader not present. Run composer update first.');
17 17
     }
18 18
 
19
-   /**
20
-    * The composer autoloader
21
-    */
19
+    /**
20
+     * The composer autoloader
21
+     */
22 22
     require_once $autoload;
23 23
 
24 24
     // the folder in which the localization .ini files are stored
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     $autoload = realpath($root.'/../vendor/autoload.php');
18 18
     
19 19
     // we need the autoloader to be present
20
-    if($autoload === false) {
20
+    if ($autoload === false) {
21 21
         die('<b>ERROR:</b> Autoloader not present. Run composer update first.');
22 22
     }
23 23
 
Please login to merge, or discard this patch.
example/sources/php/sources3.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
     $text = t('This text is in the global scope.');
4 4
     
5 5
     $text2 = t(
6
-        'It is possible to write long texts ' .
7
-        'using text concatenation in the source ' .
6
+        'It is possible to write long texts '.
7
+        'using text concatenation in the source '.
8 8
         'code to keep it readable.'
9 9
     );
10 10
\ No newline at end of file
Please login to merge, or discard this patch.
src/Localization/Currency/GBP.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,8 +49,8 @@
 block discarded – undo
49 49
         $examples[] = '1.500';
50 50
 
51 51
         if ($decimalPositions > 0) {
52
-            $examples[] = '50,' . substr($decimals, 0, $decimalPositions);
53
-            $examples[] = '1.500,' . substr($decimals, 0, $decimalPositions);
52
+            $examples[] = '50,'.substr($decimals, 0, $decimalPositions);
53
+            $examples[] = '1.500,'.substr($decimals, 0, $decimalPositions);
54 54
         }
55 55
 
56 56
         return $examples;
Please login to merge, or discard this patch.
src/Localization/Source/Folder.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     
50 50
     public function excludeFolder(string $folder) : Localization_Source_Folder
51 51
     {
52
-        if(!in_array($folder, $this->excludes['folders'])) {
52
+        if (!in_array($folder, $this->excludes['folders'])) {
53 53
             $this->excludes['folders'][] = $folder;
54 54
         }
55 55
         
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     
59 59
     public function excludeFolders(array $folders) : Localization_Source_Folder
60 60
     {
61
-        foreach($folders as $folder) {
61
+        foreach ($folders as $folder) {
62 62
             $this->excludeFolder($folder);
63 63
         }
64 64
         
Please login to merge, or discard this patch.
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -9,24 +9,24 @@
 block discarded – undo
9 9
 
10 10
 class Localization_Source_Folder extends Localization_Source
11 11
 {
12
-   /**
13
-    * The folder under which all translatable files are kept.
14
-    * @var string
15
-    */
12
+    /**
13
+     * The folder under which all translatable files are kept.
14
+     * @var string
15
+     */
16 16
     protected $sourcesFolder;
17 17
     
18
-   /**
19
-    * @var string
20
-    */
18
+    /**
19
+     * @var string
20
+     */
21 21
     protected $id;
22 22
 
23
-   /**
24
-    * @param string $alias An alias for this source, to recognize it by.
25
-    * @param string $label The human-readable label, used in the editor.
26
-    * @param string $group A human-readable group label to group several sources by. Used in the editor.
27
-    * @param string $storageFolder The folder in which to store the localization files.
28
-    * @param string $sourcesFolder The folder in which to analyze files to find translatable strings.
29
-    */
23
+    /**
24
+     * @param string $alias An alias for this source, to recognize it by.
25
+     * @param string $label The human-readable label, used in the editor.
26
+     * @param string $group A human-readable group label to group several sources by. Used in the editor.
27
+     * @param string $storageFolder The folder in which to store the localization files.
28
+     * @param string $sourcesFolder The folder in which to analyze files to find translatable strings.
29
+     */
30 30
     public function __construct(string $alias, string $label, string $group, string $storageFolder, string $sourcesFolder)
31 31
     {
32 32
         parent::__construct($alias, $label, $group, $storageFolder);
Please login to merge, or discard this patch.
src/Localization/Event.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -20,9 +20,9 @@  discard block
 block discarded – undo
20 20
  */
21 21
 abstract class Localization_Event
22 22
 {
23
-   /**
24
-    * @var array
25
-    */
23
+    /**
24
+     * @var array
25
+     */
26 26
     protected $args;
27 27
     
28 28
     public function __construct(array $args)
@@ -30,13 +30,13 @@  discard block
 block discarded – undo
30 30
         $this->args = $args;
31 31
     }
32 32
 
33
-   /**
34
-    * Fetches the argument at the specified index in the 
35
-    * event's arguments list, if it exists. 
36
-    * 
37
-    * @param int $index Zero-based index number.
38
-    * @return mixed|NULL
39
-    */ 
33
+    /**
34
+     * Fetches the argument at the specified index in the 
35
+     * event's arguments list, if it exists. 
36
+     * 
37
+     * @param int $index Zero-based index number.
38
+     * @return mixed|NULL
39
+     */ 
40 40
     public function getArgument(int $index)
41 41
     {
42 42
         if(isset($this->args[$index])) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     */ 
40 40
     public function getArgument(int $index)
41 41
     {
42
-        if(isset($this->args[$index])) {
42
+        if (isset($this->args[$index])) {
43 43
             return $this->args[$index];
44 44
         }
45 45
         
Please login to merge, or discard this patch.
src/Localization/Parser/Token/Javascript.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,12 +9,12 @@
 block discarded – undo
9 9
     protected function parseDefinition() : void
10 10
     {
11 11
         // some entries are strings, like parenthesises, semicolons and the like.
12
-        if(is_string($this->definition))
12
+        if (is_string($this->definition))
13 13
         {
14 14
             $this->token = $this->definition;
15 15
             $this->value = null;
16 16
             
17
-            if(isset($this->parentToken)) {
17
+            if (isset($this->parentToken)) {
18 18
                 $this->line = $this->parentToken->getLine();
19 19
             }
20 20
         }
Please login to merge, or discard this patch.
src/Localization/Scanner/StringsCollection/Warning.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,9 +6,9 @@
 block discarded – undo
6 6
 
7 7
 class Localization_Scanner_StringsCollection_Warning
8 8
 {
9
-   /**
10
-    * @var array
11
-    */
9
+    /**
10
+     * @var array
11
+     */
12 12
     protected $data;
13 13
     
14 14
     public function __construct(array $data)
Please login to merge, or discard this patch.
src/Localization/Writer.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     
69 69
     public function addHashes(array $hashes) : Localization_Writer
70 70
     {
71
-        foreach($hashes as $hash => $text)
71
+        foreach ($hashes as $hash => $text)
72 72
         {
73 73
             $this->addHash($hash, $text);
74 74
         }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
         $hashes = $this->compileHashes();
91 91
         $lines = array();
92 92
         
93
-        foreach($hashes as $entry)
93
+        foreach ($hashes as $entry)
94 94
         {
95 95
             $lines[] = sprintf(
96 96
                 '%s= "%s"',
@@ -106,16 +106,16 @@  discard block
 block discarded – undo
106 106
     
107 107
     private function renderHead() : string
108 108
     {
109
-        $title = strtoupper($this->fileType).' TRANSLATION FILE FOR ' . strtoupper($this->locale->getLabel());
109
+        $title = strtoupper($this->fileType).' TRANSLATION FILE FOR '.strtoupper($this->locale->getLabel());
110 110
         
111 111
         $lines = array();
112 112
         
113 113
         $lines[] = '; -------------------------------------------------------';
114
-        $lines[] = '; '. $title;
114
+        $lines[] = '; '.$title;
115 115
         $lines[] = '; -------------------------------------------------------';
116 116
         $lines[] = '; ';
117 117
         
118
-        if($this->editable) 
118
+        if ($this->editable) 
119 119
         {
120 120
             $lines[] = '; You may edit text directly in this file under the following conditions:';
121 121
             $lines[] = '; ';
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     {
138 138
         $hashes = array();
139 139
         
140
-        foreach($this->hashes as $hash => $text)
140
+        foreach ($this->hashes as $hash => $text)
141 141
         {
142 142
             $hashes[] = array(
143 143
                 'hash' => $hash,
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     {
165 165
         $result = strnatcasecmp($a['text'], $b['text']);
166 166
         
167
-        if($result === 0) 
167
+        if ($result === 0) 
168 168
         {
169 169
             return strnatcmp($a['hash'], $b['hash']);
170 170
         }
Please login to merge, or discard this patch.
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -20,29 +20,29 @@  discard block
 block discarded – undo
20 20
  */
21 21
 class Localization_Writer
22 22
 {
23
-   /**
24
-    * @var boolean
25
-    */
23
+    /**
24
+     * @var boolean
25
+     */
26 26
     private $editable = false;
27 27
     
28
-   /**
29
-    * @var array<string,string>
30
-    */
28
+    /**
29
+     * @var array<string,string>
30
+     */
31 31
     private $hashes = array();
32 32
     
33
-   /**
34
-    * @var Localization_Locale
35
-    */
33
+    /**
34
+     * @var Localization_Locale
35
+     */
36 36
     private $locale;
37 37
     
38
-   /**
39
-    * @var string
40
-    */
38
+    /**
39
+     * @var string
40
+     */
41 41
     private $fileType;
42 42
     
43
-   /**
44
-    * @var string
45
-    */
43
+    /**
44
+     * @var string
45
+     */
46 46
     private $filePath;
47 47
     
48 48
     public function __construct(Localization_Locale $locale, string $fileType, string $filePath)
@@ -150,16 +150,16 @@  discard block
 block discarded – undo
150 150
         return $hashes;
151 151
     }
152 152
     
153
-   /**
154
-    * Sort the strings to ensure they always appear in the same order:
155
-    * first by text, and same strings by their hashes. This is important
156
-    * for strings that have the same translation to avoid them changing
157
-    * order between sorts.
158
-    *
159
-    * @param array $a
160
-    * @param array $b
161
-    * @return int
162
-    */
153
+    /**
154
+     * Sort the strings to ensure they always appear in the same order:
155
+     * first by text, and same strings by their hashes. This is important
156
+     * for strings that have the same translation to avoid them changing
157
+     * order between sorts.
158
+     *
159
+     * @param array $a
160
+     * @param array $b
161
+     * @return int
162
+     */
163 163
     public function callback_sortStrings(array $a, array $b) : int
164 164
     {
165 165
         $result = strnatcasecmp($a['text'], $b['text']);
Please login to merge, or discard this patch.