Passed
Push — master ( eb1f44...b85f0f )
by Dispositif
06:16
created
src/Application/ExternRefWorker.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -123,8 +123,7 @@
 block discarded – undo
123 123
         }
124 124
         if (isset($this->summary->memo['count lien brisé'])) {
125 125
             $suffix .= ', ⚠️️️lien brisé'; //⚠️
Please login to merge, or discard this patch.
src/Application/Examples/externRefProcess.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
 //echo count($titles)." titles\n";
77 77
 $edited = file(__DIR__.'/../resources/article_externRef_edited.txt', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
78 78
 $filtered = array_diff($titles, $edited);
79
-$list = new PageList( $filtered );
79
+$list = new PageList($filtered);
80 80
 echo ">".$list->count()." dans liste\n";
81 81
 
82 82
 new ExternRefWorker($botConfig, $wiki, $list);
Please login to merge, or discard this patch.
src/Application/ExternRefTransformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
188 188
         $this->log->info($serialized."\n");
189 189
 
190 190
         //return Normalizer::normalize($serialized); // sometimes :bool
191
-        if(empty($serialized) || !is_string($serialized))  {
191
+        if (empty($serialized) || !is_string($serialized)) {
192 192
             return $serialized;
193 193
         }
194 194
         return $url;
Please login to merge, or discard this patch.