Passed
Push — master ( f62ea3...7ec3d6 )
by Johnny
06:28
created
src/Rivescript.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     {
100 100
         parent::__construct();
101 101
 
102
-        include __DIR__ . '/bootstrap.php';
102
+        include __DIR__.'/bootstrap.php';
103 103
 
104 104
         $options;
105 105
 
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     private function registerTags(): void
119 119
     {
120 120
         synapse()->tags->each(
121
-            function ($tag) {
121
+            function($tag) {
122 122
                 $class = "\\Axiom\\Rivescript\\Cortex\\Tags\\$tag";
123 123
                 $tagInstance = new $class();
124 124
 
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
                          array  $args = [],
267 267
                          int    $verbosity = Rivescript::VERBOSITY_DEBUG): void
268 268
     {
269
-        $message = "[WARNING]: " . $this->formatString($message, $args);
269
+        $message = "[WARNING]: ".$this->formatString($message, $args);
270 270
 
271 271
         $this->emit(Event::DEBUG_WARNING, $message);
272 272
     }
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
                           array  $args = [],
285 285
                           int    $verbosity = Rivescript::VERBOSITY_NORMAL): void
286 286
     {
287
-        $message = "[DEBUG]: " . $this->formatString($message, $args);
287
+        $message = "[DEBUG]: ".$this->formatString($message, $args);
288 288
 
289 289
         $this->emit(EVENT::DEBUG, $message);
290 290
     }
Please login to merge, or discard this patch.
sandbox/api.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 use Axiom\Rivescript\Events\Event;
5 5
 use Axiom\Rivescript\Rivescript;
6 6
 
7
-$script =<<<EOF
7
+$script = <<<EOF
8 8
 + hi bot
9 9
 - hello human
10 10
 EOF;
Please login to merge, or discard this patch.