Completed
Push — master ( ffa897...a71648 )
by Алексей
03:11
created
src/Bot.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,9 +40,9 @@
 block discarded – undo
40 40
 
41 41
     public static function __callStatic($name, $arguments)
42 42
     {
43
-        $class = '\\Telegram\\Actions\\' . ucfirst($name);
43
+        $class = '\\Telegram\\Actions\\'.ucfirst($name);
44 44
         if (!class_exists($class)) {
45
-            throw new TelegramCoreException('Action ' . $name . ' not exists');
45
+            throw new TelegramCoreException('Action '.$name.' not exists');
46 46
         }
47 47
 
48 48
         return new $class;
Please login to merge, or discard this patch.