Completed
Push — master ( 7a67a4...253eb0 )
by
unknown
15s
created
src/Localization/LocalizedString.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,15 +38,15 @@
 block discarded – undo
38 38
      */
39 39
 
40 40
     /** @internal
41
-      * \brief Reference to the bot. */
41
+     * \brief Reference to the bot. */
42 42
     protected $bot;
43 43
 
44 44
     /** @internal
45
-      * \brief Current user/group language. */
45
+     * \brief Current user/group language. */
46 46
     public $language;
47 47
 
48 48
     /** @internal
49
-      * \brief Store the localizated strings. */
49
+     * \brief Store the localizated strings. */
50 50
     protected $local;
51 51
 
52 52
     /**
Please login to merge, or discard this patch.
src/Localization/File.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
      */
47 47
 
48 48
     /** @internal
49
-      * \brief Store the localized strings. */
49
+     * \brief Store the localized strings. */
50 50
     protected $local;
51 51
 
52 52
     /** \brief Source for localization files. */
Please login to merge, or discard this patch.
src/Localization/Localization.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
         // Get the language from the bot
64 64
         $sth = $pdo->prepare('SELECT language FROM ' . $this->user_table . ' WHERE '
65
-                                                           . $this->id_column . ' = :chat_id');
65
+                                                            . $this->id_column . ' = :chat_id');
66 66
 
67 67
         $chat_id = $this->bot->getChatID();
68 68
         $sth->bindParam(':chat_id', $chat_id);
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
         // Update the language in the database
97 97
         $sth = $pdo->prepare('UPDATE ' . $this->user_table . ' SET language = :language WHERE '
98
-                                             . $this->id_column . ' = :id');
98
+                                                . $this->id_column . ' = :id');
99 99
         $sth->bindParam(':language', $language);
100 100
 
101 101
         $chat_id = $this->bot->getChatID();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     /** \brief Current user/group language. */
48 48
     public $language;
49 49
 
50
-    public function __construct(BasicBot &$bot)
50
+    public function __construct(BasicBot & $bot)
51 51
     {
52 52
         $this->bot = $bot;
53 53
     }
Please login to merge, or discard this patch.
src/Database/User.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     abstract protected function sanitizeUserTable();
39 39
 
40 40
     /** @internal
41
-      * \brief PDO connection to the database. */
41
+     * \brief PDO connection to the database. */
42 42
     public $pdo;
43 43
 
44 44
     /**
Please login to merge, or discard this patch.
src/Core/Edit.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     abstract protected function execRequest(string $url);
28 28
 
29 29
     /** @internal
30
-      * \brief Contains parameters of the next request. */
30
+     * \brief Contains parameters of the next request. */
31 31
     protected $parameters;
32 32
 
33 33
     /**
Please login to merge, or discard this patch.
src/Database/Database.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * \brief Create a Database handler object.
50 50
      * @param BasicBot $bot Reference to the bot that use this object.
51 51
      */
52
-    public function __construct(BasicBot &$bot)
52
+    public function __construct(BasicBot & $bot)
53 53
     {
54 54
         $this->bot = $bot;
55 55
     }
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      */
95 95
     public static function addDefaultValue(array $params) : array
96 96
     {
97
-        static $defaults = [ 'adapter' => PDO_DEFAULT_ADAPTER, 'host' => 'localhost', 'options' => [] ];
97
+        static $defaults = ['adapter' => PDO_DEFAULT_ADAPTER, 'host' => 'localhost', 'options' => []];
98 98
         return array_merge($defaults, $params);
99 99
     }
100 100
 
Please login to merge, or discard this patch.
src/Entities/EntityAccess.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 
41 41
     public function offsetUnset($offset)
42 42
     {
43
- /* Log a warning */
43
+    /* Log a warning */
44 44
     }
45 45
 
46 46
     /**
Please login to merge, or discard this patch.
src/Commands/AdminCommand.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -79,12 +79,12 @@
 block discarded – undo
79 79
         // If we found a valid command (check first lenght, then use strpos)
80 80
         if ($message_is_command && $this->length == $message['entities'][0]['length'] &&
81 81
             mb_strpos($this->command, $message['text'], $message['entities'][0]['offset']) !== false) {
82
-          // Check that the user can execute the command
83
-          if (in_array($message['from']['id'], $this->ids)) {
82
+            // Check that the user can execute the command
83
+            if (in_array($message['from']['id'], $this->ids)) {
84 84
             return true;
85
-          } else {
85
+            } else {
86 86
             return false;
87
-          }
87
+            }
88 88
         }
89 89
 
90 90
         return false;
Please login to merge, or discard this patch.
src/Commands/MultiCharacterCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     public function __construct(string $command, callable $script, string ...$chars)
63 63
     {
64 64
         $chars_count = count($chars);
65
-        if ( $chars_count === 0)
65
+        if ($chars_count === 0)
66 66
         {
67 67
             throw new BotException("No character given for matching the command");
68 68
         }
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
         else
75 75
         {
76 76
             $this->regex_rule = '(' . $chars[0];
77
-            foreach($chars as $char)
77
+            foreach ($chars as $char)
78 78
             {
79 79
                 $this->regex_rule .= '|' . $char;
80 80
             }
Please login to merge, or discard this patch.