@@ -63,7 +63,7 @@ |
||
| 63 | 63 | |
| 64 | 64 | $matches = $this->getMatches($source); |
| 65 | 65 | |
| 66 | - foreach($matches as $match) { |
|
| 66 | + foreach ($matches as $match) { |
|
| 67 | 67 | $key = $match[1]; |
| 68 | 68 | $value = $match[2]; |
| 69 | 69 | |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | { |
| 86 | 86 | parent::__construct(); |
| 87 | 87 | |
| 88 | - include __DIR__ . '/bootstrap.php'; |
|
| 88 | + include __DIR__.'/bootstrap.php'; |
|
| 89 | 89 | |
| 90 | 90 | synapse()->brain->setMaster($this); |
| 91 | 91 | synapse()->rivescript = $this; |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | private function registerTags(): void |
| 102 | 102 | { |
| 103 | 103 | synapse()->tags->each( |
| 104 | - function ($tag) { |
|
| 104 | + function($tag) { |
|
| 105 | 105 | $class = "\\Axiom\\Rivescript\\Cortex\\Tags\\$tag"; |
| 106 | 106 | $tagInstance = new $class(); |
| 107 | 107 | |
@@ -241,7 +241,7 @@ discard block |
||
| 241 | 241 | */ |
| 242 | 242 | public function warn(string $message, array $args = [], int $verbosity = Rivescript::VERBOSITY_NORMAL): void |
| 243 | 243 | { |
| 244 | - $message = "[WARNING]: " . $this->formatString($message, $args); |
|
| 244 | + $message = "[WARNING]: ".$this->formatString($message, $args); |
|
| 245 | 245 | |
| 246 | 246 | if ($this->onSay) { |
| 247 | 247 | call_user_func($this->onSay, $message, $verbosity); |