Completed
Push — master ( df61ea...6b60b7 )
by Pedro
02:39
created
public/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 // Composer autoloading
22 22
 include __DIR__ . '/../vendor/autoload.php';
23 23
 
24
-if (! class_exists(Application::class)) {
24
+if (!class_exists(Application::class)) {
25 25
     throw new RuntimeException(
26 26
         "Unable to load application.\n"
27 27
         . "- Type `composer install` if you are developing locally.\n"
Please login to merge, or discard this patch.
module/Application/src/View/Helper/Scoreboard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
         $url = $this->getView()->plugin('url');
12 12
 
13 13
         $class = '';
14
-        if (! $item['status']) {
14
+        if (!$item['status']) {
15 15
             $class = ' class="text-danger"';
16 16
         } else {
17 17
             $class = ' class="text-success"';
Please login to merge, or discard this patch.
module/Application/test/Service/BotParserTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
             $configOverrides
22 22
         ));
23 23
 
24
-          parent::setUp();
24
+            parent::setUp();
25 25
     }
26 26
 
27 27
     public function testPositionQuest()
@@ -435,7 +435,7 @@  discard block
 block discarded – undo
435 435
         // Test first event
436 436
         $this->assertEquals(
437 437
             "[06/22/18 09:03:15] fAGSO has fallen ill with the black plague. " .
438
-                     "This terrible calamity has slowed them 0 days, 10:51:59 from level 81.",
438
+                        "This terrible calamity has slowed them 0 days, 10:51:59 from level 81.",
439 439
             $events['items'][0]
440 440
         );
441 441
 
Please login to merge, or discard this patch.
module/Application/src/Service/BotParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -437,7 +437,7 @@
 block discarded – undo
437 437
                     $quest['title'] = trim(substr($data, 2));
438 438
                 }
439 439
                 // Y - type. 1 for time based, 2 for stages
440
-                if (! isset($data['type']) && $data[0] == "Y") {
440
+                if (!isset($data['type']) && $data[0] == "Y") {
441 441
                     $quest['type'] = (int) substr($data, 2);
442 442
                 }
443 443
                 // S - objective
Please login to merge, or discard this patch.