Completed
Push — master ( 664ed9...fc1708 )
by Lars
15:26
created
src/voku/helper/stopwords/es.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -318,6 +318,6 @@
 block discarded – undo
318 318
     'tened',
319 319
 );
320 320
 
321
-$result =& $data;
321
+$result = & $data;
322 322
 unset($data);
323 323
 return $result;
Please login to merge, or discard this patch.
src/voku/helper/stopwords/nl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,6 +106,6 @@
 block discarded – undo
106 106
 'andere',
107 107
 );
108 108
 
109
-$result =& $data;
109
+$result = & $data;
110 110
 unset($data);
111 111
 return $result;
Please login to merge, or discard this patch.
src/voku/helper/stopwords/ru.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,6 +156,6 @@
 block discarded – undo
156 156
     'между',
157 157
 );
158 158
 
159
-$result =& $data;
159
+$result = & $data;
160 160
 unset($data);
161 161
 return $result;
Please login to merge, or discard this patch.
src/voku/helper/StopWords.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
   private function loadLanguageData($language = 'de')
45 45
   {
46 46
     if (in_array($language, self::$availableLanguages, true) === false) {
47
-      throw new StopWordsLanguageNotExists('language not supported: ' . $language);
47
+      throw new StopWordsLanguageNotExists('language not supported: '.$language);
48 48
     }
49 49
 
50 50
     $this->stopWords[$language] = $this->getData($language);
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
       return $RESULT_STOP_WORDS_CACHE[$file];
66 66
     }
67 67
 
68
-    $file = __DIR__ . '/stopwords/' . $file . '.php';
68
+    $file = __DIR__.'/stopwords/'.$file.'.php';
69 69
     if (file_exists($file)) {
70 70
       /** @noinspection PhpIncludeInspection */
71 71
       $RESULT_STOP_WORDS_CACHE[$file] = require $file;
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
   public function getStopWordsFromLanguage($language = 'de')
89 89
   {
90 90
     if (in_array($language, self::$availableLanguages, true) === false) {
91
-      throw new StopWordsLanguageNotExists('language not supported: ' . $language);
91
+      throw new StopWordsLanguageNotExists('language not supported: '.$language);
92 92
     }
93 93
 
94 94
     if (!isset($this->stopWords[$language])) {
Please login to merge, or discard this patch.
src/voku/helper/stopwords/ca.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -261,6 +261,6 @@
 block discarded – undo
261 261
     'že',
262 262
 );
263 263
 
264
-$result =& $data;
264
+$result = & $data;
265 265
 unset($data);
266 266
 return $result;
Please login to merge, or discard this patch.
src/voku/helper/stopwords/hi.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,6 +174,6 @@
 block discarded – undo
174 174
     'होने',
175 175
 );
176 176
 
177
-$result =& $data;
177
+$result = & $data;
178 178
 unset($data);
179 179
 return $result;
Please login to merge, or discard this patch.
src/voku/helper/stopwords/ar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,6 +167,6 @@
 block discarded – undo
167 167
     'صفر',
168 168
 );
169 169
 
170
-$result =& $data;
170
+$result = & $data;
171 171
 unset($data);
172 172
 return $result;
Please login to merge, or discard this patch.
src/voku/helper/stopwords/bg.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -264,6 +264,6 @@
 block discarded – undo
264 264
     'як',
265 265
 );
266 266
 
267
-$result =& $data;
267
+$result = & $data;
268 268
 unset($data);
269 269
 return $result;
Please login to merge, or discard this patch.
src/voku/helper/stopwords/ro.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -263,6 +263,6 @@
 block discarded – undo
263 263
     'am',
264 264
 );
265 265
 
266
-$result =& $data;
266
+$result = & $data;
267 267
 unset($data);
268 268
 return $result;
Please login to merge, or discard this patch.