Completed
Push — master ( 85ddb2...d5b935 )
by Michal
11:09
created
app/Core/Forms/DatabaseForm/DatabaseForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
         $databaseForm->addFieldsToForm($form);
44 44
         $form->addSubmit('save', 'Save');
45 45
         $form->onSuccess[] = [$databaseForm, 'submit'];
46
-        $form->onSuccess[] = function () {
46
+        $form->onSuccess[] = function() {
47 47
             $this->presenter->redirect('Database:default', $this->driver->type());
48 48
         };
49 49
         return $form;
Please login to merge, or discard this patch.
app/Core/Forms/ItemForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         $itemForm->addFieldsToForm($form);
53 53
         $form->addSubmit('save', 'Save');
54 54
         $form->onSuccess[] = [$itemForm, 'submit'];
55
-        $form->onSuccess[] = function () {
55
+        $form->onSuccess[] = function() {
56 56
             $this->presenter->redirect('Item:default', $this->driver->type(), $this->database, $this->type, $this->table);
57 57
         };
58 58
         return $form;
Please login to merge, or discard this patch.
app/Core/Forms/TableForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         $tableForm->addFieldsToForm($form);
50 50
         $form->addSubmit('save', 'Save');
51 51
         $form->onSuccess[] = [$tableForm, 'submit'];
52
-        $form->onSuccess[] = function () {
52
+        $form->onSuccess[] = function() {
53 53
             $this->presenter->redirect('Table:default', $this->driver->type(), $this->database);
54 54
         };
55 55
         return $form;
Please login to merge, or discard this patch.
app/Core/Driver/AbstractDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
     public function name()
36 36
     {
37
-        return $this->type() . '.name';
37
+        return $this->type().'.name';
38 38
     }
39 39
 
40 40
     /**
Please login to merge, or discard this patch.
app/Drivers/RabbitMQ/RabbitMQManagementApiClient.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 
11 11
     public function __construct($host = 'localhost', $port = '15672', $user = 'guest', $password = 'guest')
12 12
     {
13
-        $this->baseUrl = 'http://' . $user . ':' . $password . '@' . $host . ':' . $port;
13
+        $this->baseUrl = 'http://'.$user.':'.$password.'@'.$host.':'.$port;
14 14
     }
15 15
 
16 16
     /**
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
                 $vhosts[] = $item;
36 36
                 continue;
37 37
             }
38
-            $permissions = $this->call('/api/vhosts/' . urlencode($item['name']) . '/permissions');
38
+            $permissions = $this->call('/api/vhosts/'.urlencode($item['name']).'/permissions');
39 39
             foreach ($permissions as $permission) {
40 40
                 if ($permission['user'] == $user) {
41 41
                     $vhosts[] = $item;
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     {
56 56
         $endpoint = '/api/queues';
57 57
         if ($vhost) {
58
-            $endpoint .= '/' . urlencode($vhost);
58
+            $endpoint .= '/'.urlencode($vhost);
59 59
         }
60 60
         $queues = $this->call($endpoint);
61 61
         return $queues;
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
             return [];
75 75
         }
76 76
 
77
-        $endpoint = '/api/queues/' . urlencode($vhost) . '/' . urlencode($queue) . '/get';
77
+        $endpoint = '/api/queues/'.urlencode($vhost).'/'.urlencode($queue).'/get';
78 78
         $params = [
79 79
             'count' => $count,
80 80
             'requeue' => true,
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
     private function call($endpoint, $method = 'GET', $params = null)
88 88
     {
89
-        $ch = curl_init($this->baseUrl . $endpoint);
89
+        $ch = curl_init($this->baseUrl.$endpoint);
90 90
         curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
91 91
         curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
92 92
         curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
         if (!$response) {
100 100
             return [];
101 101
         }
102
-        $result = json_decode((string)$response, true);
102
+        $result = json_decode((string) $response, true);
103 103
         if (isset($result['error'])) {
104 104
             throw new ConnectException($result['reason']);
105 105
         }
Please login to merge, or discard this patch.
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -61,6 +61,10 @@  discard block
 block discarded – undo
61 61
         return $queues;
62 62
     }
63 63
 
64
+    /**
65
+     * @param string $vhost
66
+     * @param string $queue
67
+     */
64 68
     public function getMessages($vhost, $queue)
65 69
     {
66 70
         $count = 0;
@@ -84,6 +88,9 @@  discard block
 block discarded – undo
84 88
         return $result;
85 89
     }
86 90
 
91
+    /**
92
+     * @param string $endpoint
93
+     */
87 94
     private function call($endpoint, $method = 'GET', $params = null)
88 95
     {
89 96
         $ch = curl_init($this->baseUrl . $endpoint);
Please login to merge, or discard this patch.
app/Drivers/Memcache/MemcacheDataManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
             return $count;
65 65
         }
66 66
 
67
-        $stats = $this->connection->getExtendedStats('cachedump', (int)$table);
67
+        $stats = $this->connection->getExtendedStats('cachedump', (int) $table);
68 68
         $keys = isset($stats[$this->database]) ? $stats[$this->database] : [];
69 69
         return count($keys);
70 70
     }
Please login to merge, or discard this patch.
app/Drivers/MySql/Forms/MySqlDatabaseForm.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,14 +47,14 @@
 block discarded – undo
47 47
     public function submit(Form $form, ArrayHash $values)
48 48
     {
49 49
         if ($this->database) {
50
-            $query = 'ALTER DATABASE ' . $this->database;
50
+            $query = 'ALTER DATABASE '.$this->database;
51 51
         } else {
52
-            $query = 'CREATE DATABASE ' . $values['name'];
52
+            $query = 'CREATE DATABASE '.$values['name'];
53 53
         }
54 54
         if ($values['charset']) {
55
-            $query .= ' CHARACTER SET ' . $values['charset'];
55
+            $query .= ' CHARACTER SET '.$values['charset'];
56 56
             if ($values['collation']) {
57
-                $query .= ' COLLATE ' . $values['collation'];
57
+                $query .= ' COLLATE '.$values['collation'];
58 58
             }
59 59
         }
60 60
 
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@
 block discarded – undo
13 13
 
14 14
     private $database;
15 15
 
16
+    /**
17
+     * @param string|null $database
18
+     */
16 19
     public function __construct(PDO $pdo, $database)
17 20
     {
18 21
         $this->pdo = $pdo;
Please login to merge, or discard this patch.
app/Drivers/Redis/Forms/RedisCreateHashForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     public function submit(Form $form, ArrayHash $values)
30 30
     {
31 31
         if ($this->connection->hlen($values['key']) > 0) {
32
-            $form->addError('Key "' . $values['key'] . '" already exists');
32
+            $form->addError('Key "'.$values['key'].'" already exists');
33 33
             return;
34 34
         }
35 35
         $this->connection->hset($values['key'], $values['field'], $values['value']);
Please login to merge, or discard this patch.
app/Drivers/Redis/Forms/RedisRenameHashForm.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     public function submit(Form $form, ArrayHash $values)
33 33
     {
34 34
         if (!$this->connection->rename($this->key, $values['new_key'])) {
35
-            $form->addError('Key "' . $this->key . '" doesn\'t exist');
35
+            $form->addError('Key "'.$this->key.'" doesn\'t exist');
36 36
             return;
37 37
         }
38 38
     }
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@
 block discarded – undo
13 13
 
14 14
     private $key;
15 15
 
16
+    /**
17
+     * @param string $key
18
+     */
16 19
     public function __construct(RedisProxy $connection, $key)
17 20
     {
18 21
         $this->connection = $connection;
Please login to merge, or discard this patch.