Passed
Push — master ( dbde9b...3f3727 )
by Goffy
03:56
created
class/Github/Http/StreamClient.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -47,15 +47,15 @@  discard block
 block discarded – undo
47 47
         $options = [
48 48
             'http' => [
49 49
                 'method' => $request->getMethod(),
50
-                'header' => \implode("\r\n", $headerStr) . "\r\n",
51
-                'follow_location' => 0,  # Github sets the Location header for 201 code too and redirection is not required for us
50
+                'header' => \implode("\r\n", $headerStr)."\r\n",
51
+                'follow_location' => 0, # Github sets the Location header for 201 code too and redirection is not required for us
52 52
                 'protocol_version' => 1.1,
53 53
                 'ignore_errors' => TRUE,
54 54
             ],
55 55
             'ssl' => [
56 56
                 'verify_peer' => TRUE,
57
-                'cafile' => realpath(__DIR__ . '/../../ca-chain.crt'),
58
-                'disable_compression' => TRUE,  # Effective since PHP 5.4.13
57
+                'cafile' => realpath(__DIR__.'/../../ca-chain.crt'),
58
+                'disable_compression' => TRUE, # Effective since PHP 5.4.13
59 59
             ],
60 60
         ];
61 61
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
         $headers = [];
105 105
         foreach ($http_response_header as $header) {
106 106
             if (\in_array(\substr($header, 0, 1), [' ', "\t"], TRUE)) {
107
-                $headers[$last] .= ' ' . \trim($header);  # RFC2616, 2.2
107
+                $headers[$last] .= ' '.\trim($header); # RFC2616, 2.2
108 108
             } else {
109 109
                 list($name, $value) = \explode(':', $header, 2) + [NULL, NULL];
110 110
                 $headers[$last = \trim($name)] = \trim($value);
Please login to merge, or discard this patch.
class/Github/Http/CurlClient.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             CURLOPT_CONNECTTIMEOUT => 10,
59 59
             CURLOPT_SSL_VERIFYHOST => 2,
60 60
             CURLOPT_SSL_VERIFYPEER => 1,
61
-            CURLOPT_CAINFO => realpath(__DIR__ . '/../ca-chain.crt'),
61
+            CURLOPT_CAINFO => realpath(__DIR__.'/../ca-chain.crt'),
62 62
         ];
63 63
 
64 64
         $hardOptions = [
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
                     $responseHeaders = [];
79 79
 
80 80
                 } elseif (\in_array(\substr($line, 0, 1), [' ', "\t"], TRUE)) {
81
-                    $responseHeaders[$last] .= ' ' . \trim($line);  # RFC2616, 2.2
81
+                    $responseHeaders[$last] .= ' '.\trim($line); # RFC2616, 2.2
82 82
 
83 83
                 } elseif ($line !== "\r\n") {
84 84
                     list($name, $value) = \explode(':', $line, 2);
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 
103 103
         $result = curl_setopt_array($this->curl, $hardOptions + ($this->options ?: []) + $softOptions);
104 104
         if ($result === FALSE) {
105
-            throw new BadResponseException('Setting cURL options failed: ' . \curl_error($this->curl), curl_errno($this->curl));
105
+            throw new BadResponseException('Setting cURL options failed: '.\curl_error($this->curl), curl_errno($this->curl));
106 106
         }
107 107
 
108 108
         $content = \curl_exec($this->curl);
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
         $code = \curl_getinfo($this->curl, CURLINFO_HTTP_CODE);
114 114
         if ($code === FALSE) {
115
-            throw new BadResponseException('HTTP status code is missing:' . \curl_error($this->curl), curl_errno($this->curl));
115
+            throw new BadResponseException('HTTP status code is missing:'.\curl_error($this->curl), curl_errno($this->curl));
116 116
         }
117 117
 
118 118
         return new Response($code, $responseHeaders, $content);
Please login to merge, or discard this patch.
class/Github/Storages/FileCache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
             throw new MissingDirectoryException("Directory '$tempDir' is missing.");
28 28
         }
29 29
 
30
-        $dir = $tempDir . DIRECTORY_SEPARATOR . 'milo.github-api';
30
+        $dir = $tempDir.DIRECTORY_SEPARATOR.'milo.github-api';
31 31
 
32 32
         if (!\is_dir($dir)) {
33 33
             set_error_handler(function($severity, $message, $file, $line) use ($dir, & $valid) {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      */
92 92
     private function filePath($key)
93 93
     {
94
-        return $this->dir . DIRECTORY_SEPARATOR . sha1($key) . '.php';
94
+        return $this->dir.DIRECTORY_SEPARATOR.sha1($key).'.php';
95 95
     }
96 96
 
97 97
 }
Please login to merge, or discard this patch.
class/Helper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
      */
71 71
     public function getHandler($name)
72 72
     {
73
-        $class = __NAMESPACE__ . '\\' . \ucfirst($name) . 'Handler';
73
+        $class = __NAMESPACE__.'\\'.\ucfirst($name).'Handler';
74 74
         if (!\class_exists($class)) {
75 75
             throw new \RuntimeException("Class '$class' not found");
76 76
         }
Please login to merge, or discard this patch.
class/LogsHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
         $logsObj->setVar('log_type', $type);
143 143
         $logsObj->setVar('log_details', $detail);
144 144
         $logsObj->setVar('log_result', $result);
145
-        $logsObj->setVar('log_datecreated',\time());
145
+        $logsObj->setVar('log_datecreated', \time());
146 146
         $logsObj->setVar('log_submitter', $submitter);
147 147
         // Insert Data
148 148
         if ($logsHandler->insert($logsObj)) {
Please login to merge, or discard this patch.
class/ReadmesHandler.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
                     $readmesObj->setVar('rm_content', $readme['content']);
171 171
                     $readmesObj->setVar('rm_encoding', $readme['encoding']);
172 172
                     $readmesObj->setVar('rm_downloadurl', $readme['download_url']);
173
-                    $readmesObj->setVar('rm_datecreated',\time());
173
+                    $readmesObj->setVar('rm_datecreated', \time());
174 174
                     $readmesObj->setVar('rm_submitter', $submitter);
175 175
                     // Insert Data
176 176
                     if (!$readmesHandler->insert($readmesObj)) {
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
             $readmesObj->setVar('rm_downloadurl', $readme['download_url']);
233 233
             $baseurl = \substr($readme['html_url'], 0, \strrpos($readme['html_url'], '/') + 1);
234 234
             $readmesObj->setVar('rm_baseurl', $baseurl);
235
-            $readmesObj->setVar('rm_datecreated',\time());
235
+            $readmesObj->setVar('rm_datecreated', \time());
236 236
             $readmesObj->setVar('rm_submitter', $submitter);
237 237
             // Insert Data
238 238
             if (!$readmesHandler->insert($readmesObj)) {
@@ -266,10 +266,10 @@  discard block
 block discarded – undo
266 266
     public function updateRepoReadme()
267 267
     {
268 268
         // update repo_readme
269
-        $sql = 'UPDATE ' . $GLOBALS['xoopsDB']->prefix('wggithub_repositories') . ' INNER JOIN ' . $GLOBALS['xoopsDB']->prefix('wggithub_readmes');
270
-        $sql .= ' ON ' . $GLOBALS['xoopsDB']->prefix('wggithub_repositories') . '.repo_id = ' . $GLOBALS['xoopsDB']->prefix('wggithub_readmes') . '.rm_repoid ';
271
-        $sql .= 'SET ' . $GLOBALS['xoopsDB']->prefix('wggithub_repositories') . '.repo_readme = 1 ';
272
-        $sql .= 'WHERE (((' . $GLOBALS['xoopsDB']->prefix('wggithub_readmes') . '.rm_id)>0));';
269
+        $sql = 'UPDATE '.$GLOBALS['xoopsDB']->prefix('wggithub_repositories').' INNER JOIN '.$GLOBALS['xoopsDB']->prefix('wggithub_readmes');
270
+        $sql .= ' ON '.$GLOBALS['xoopsDB']->prefix('wggithub_repositories').'.repo_id = '.$GLOBALS['xoopsDB']->prefix('wggithub_readmes').'.rm_repoid ';
271
+        $sql .= 'SET '.$GLOBALS['xoopsDB']->prefix('wggithub_repositories').'.repo_readme = 1 ';
272
+        $sql .= 'WHERE ((('.$GLOBALS['xoopsDB']->prefix('wggithub_readmes').'.rm_id)>0));';
273 273
         $GLOBALS['xoopsDB']->queryF($sql);
274 274
 
275 275
         return true;
Please login to merge, or discard this patch.
class/Settings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
         $ret['options']       = \strip_tags($this->getVar('set_options', 'e'));
131 131
         $editorMaxchar = $helper->getConfig('editor_maxchar');
132 132
         $ret['options_short'] = $utility::truncateHtml($ret['options'], $editorMaxchar);
133
-        $ret['primary']       = (int)$this->getVar('set_primary') > 0 ? _YES : _NO;
133
+        $ret['primary']       = (int) $this->getVar('set_primary') > 0 ? _YES : _NO;
134 134
         $ret['date']          = \formatTimestamp($this->getVar('set_date'), 's');
135 135
         $ret['submitter']     = \XoopsUser::getUnameFromId($this->getVar('set_submitter'));
136 136
         return $ret;
Please login to merge, or discard this patch.
class/Common/Resizer.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -146,14 +146,14 @@  discard block
 block discarded – undo
146 146
         $max_height_resize = $this->maxHeight;
147 147
         if ($original_w > $original_h) {
148 148
             $max_height_ratio = $this->maxHeight / $original_h;
149
-            $max_width_resize = (int)\round($original_w * $max_height_ratio);
149
+            $max_width_resize = (int) \round($original_w * $max_height_ratio);
150 150
         } else {
151 151
             $max_width_ratio   = $this->maxWidth / $original_w;
152
-            $max_height_resize = (int)\round($original_h * $max_width_ratio);
152
+            $max_height_resize = (int) \round($original_h * $max_width_ratio);
153 153
         }
154 154
         if ($max_width_resize < $this->maxWidth) {
155 155
             $max_height_ratio  = $this->maxWidth / $max_width_resize;
156
-            $max_height_resize = (int)\round($this->maxHeight * $max_height_ratio);
156
+            $max_height_resize = (int) \round($this->maxHeight * $max_height_ratio);
157 157
             $max_width_resize  = $this->maxWidth;
158 158
         }
159 159
 
@@ -168,9 +168,9 @@  discard block
 block discarded – undo
168 168
         $max_width_offset  = 0;
169 169
         $max_height_offset = 0;
170 170
         if ($this->maxWidth < $max_width_resize) {
171
-            $max_width_offset = (int)\round(($max_width_resize - $this->maxWidth) / 2);
171
+            $max_width_offset = (int) \round(($max_width_resize - $this->maxWidth) / 2);
172 172
         } else {
173
-            $max_height_offset = (int)\round(($max_height_resize - $this->maxHeight) / 2);
173
+            $max_height_offset = (int) \round(($max_height_resize - $this->maxHeight) / 2);
174 174
         }
175 175
 
176 176
         if (!imagecopy($final, $thumb, 0, 0, $max_width_offset, $max_height_offset, $max_width_resize, $max_height_resize)) {
@@ -189,10 +189,10 @@  discard block
 block discarded – undo
189 189
         $dest = \imagecreatefromjpeg($this->endFile);
190 190
         $src  = \imagecreatefromjpeg($this->sourceFile);
191 191
         if (4 == $this->mergeType) {
192
-            $imgWidth  = (int)\round($this->maxWidth / 2 - 1);
193
-            $imgHeight = (int)\round($this->maxHeight / 2 - 1);
194
-            $posCol2   = (int)\round($this->maxWidth / 2 + 1);
195
-            $posRow2   = (int)\round($this->maxHeight / 2 + 1);
192
+            $imgWidth  = (int) \round($this->maxWidth / 2 - 1);
193
+            $imgHeight = (int) \round($this->maxHeight / 2 - 1);
194
+            $posCol2   = (int) \round($this->maxWidth / 2 + 1);
195
+            $posRow2   = (int) \round($this->maxHeight / 2 + 1);
196 196
             switch ($this->mergePos) {
197 197
                 case 1:
198 198
                     imagecopy($dest, $src, 0, 0, 0, 0, $imgWidth, $imgHeight); //top left
@@ -209,11 +209,11 @@  discard block
 block discarded – undo
209 209
             }
210 210
         }
211 211
         if (6 == $this->mergeType) {
212
-            $imgWidth  = (int)\round($this->maxWidth / 3 - 1);
213
-            $imgHeight = (int)\round($this->maxHeight / 2 - 1);
214
-            $posCol2   = (int)\round($this->maxWidth / 3 + 1);
215
-            $posCol3   = $posCol2 + (int)\round($this->maxWidth / 3 + 1);
216
-            $posRow2   = (int)\round($this->maxHeight / 2 + 1);
212
+            $imgWidth  = (int) \round($this->maxWidth / 3 - 1);
213
+            $imgHeight = (int) \round($this->maxHeight / 2 - 1);
214
+            $posCol2   = (int) \round($this->maxWidth / 3 + 1);
215
+            $posCol3   = $posCol2 + (int) \round($this->maxWidth / 3 + 1);
216
+            $posRow2   = (int) \round($this->maxHeight / 2 + 1);
217 217
 
218 218
             switch ($this->mergePos) {
219 219
                 case 1:
Please login to merge, or discard this patch.
class/Common/ModuleFeedback.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -67,29 +67,29 @@  discard block
 block discarded – undo
67 67
         $moduleDirNameUpper = \mb_strtoupper($moduleDirName);
68 68
         // Get Theme Form
69 69
         \xoops_load('XoopsFormLoader');
70
-        $form = new \XoopsThemeForm(\constant('CO_' . $moduleDirNameUpper . '_' . 'FB_FORM_TITLE'), 'formfeedback', 'feedback.php', 'post', true);
70
+        $form = new \XoopsThemeForm(\constant('CO_'.$moduleDirNameUpper.'_'.'FB_FORM_TITLE'), 'formfeedback', 'feedback.php', 'post', true);
71 71
         $form->setExtra('enctype="multipart/form-data"');
72 72
 
73
-        $recipient = new \XoopsFormText(\constant('CO_' . $moduleDirNameUpper . '_' . 'FB_RECIPIENT'), 'recipient', 50, 255, $GLOBALS['xoopsModule']->getInfo('author_mail'));
73
+        $recipient = new \XoopsFormText(\constant('CO_'.$moduleDirNameUpper.'_'.'FB_RECIPIENT'), 'recipient', 50, 255, $GLOBALS['xoopsModule']->getInfo('author_mail'));
74 74
         $recipient->setExtra('disabled="disabled"');
75 75
         $form->addElement($recipient);
76
-        $your_name = new \XoopsFormText(\constant('CO_' . $moduleDirNameUpper . '_' . 'FB_NAME'), 'your_name', 50, 255, $this->name);
77
-        $your_name->setExtra('placeholder="' . \constant('CO_' . $moduleDirNameUpper . '_' . 'FB_NAME_PLACEHOLER') . '"');
76
+        $your_name = new \XoopsFormText(\constant('CO_'.$moduleDirNameUpper.'_'.'FB_NAME'), 'your_name', 50, 255, $this->name);
77
+        $your_name->setExtra('placeholder="'.\constant('CO_'.$moduleDirNameUpper.'_'.'FB_NAME_PLACEHOLER').'"');
78 78
         $form->addElement($your_name);
79
-        $your_site = new \XoopsFormText(\constant('CO_' . $moduleDirNameUpper . '_' . 'FB_SITE'), 'your_site', 50, 255, $this->site);
80
-        $your_site->setExtra('placeholder="' . \constant('CO_' . $moduleDirNameUpper . '_' . 'FB_SITE_PLACEHOLER') . '"');
79
+        $your_site = new \XoopsFormText(\constant('CO_'.$moduleDirNameUpper.'_'.'FB_SITE'), 'your_site', 50, 255, $this->site);
80
+        $your_site->setExtra('placeholder="'.\constant('CO_'.$moduleDirNameUpper.'_'.'FB_SITE_PLACEHOLER').'"');
81 81
         $form->addElement($your_site);
82
-        $your_mail = new \XoopsFormText(\constant('CO_' . $moduleDirNameUpper . '_' . 'FB_MAIL'), 'your_mail', 50, 255, $this->email);
83
-        $your_mail->setExtra('placeholder="' . \constant('CO_' . $moduleDirNameUpper . '_' . 'FB_MAIL_PLACEHOLER') . '"');
82
+        $your_mail = new \XoopsFormText(\constant('CO_'.$moduleDirNameUpper.'_'.'FB_MAIL'), 'your_mail', 50, 255, $this->email);
83
+        $your_mail->setExtra('placeholder="'.\constant('CO_'.$moduleDirNameUpper.'_'.'FB_MAIL_PLACEHOLER').'"');
84 84
         $form->addElement($your_mail);
85 85
 
86
-        $fbtypeSelect = new \XoopsFormSelect(\constant('CO_' . $moduleDirNameUpper . '_' . 'FB_TYPE'), 'fb_type', $this->type);
86
+        $fbtypeSelect = new \XoopsFormSelect(\constant('CO_'.$moduleDirNameUpper.'_'.'FB_TYPE'), 'fb_type', $this->type);
87 87
         $fbtypeSelect->addOption('', '');
88
-        $fbtypeSelect->addOption(\constant('CO_' . $moduleDirNameUpper . '_' . 'FB_TYPE_SUGGESTION'), \constant('CO_' . $moduleDirNameUpper . '_' . 'FB_TYPE_SUGGESTION'));
89
-        $fbtypeSelect->addOption(\constant('CO_' . $moduleDirNameUpper . '_' . 'FB_TYPE_BUGS'), \constant('CO_' . $moduleDirNameUpper . '_' . 'FB_TYPE_BUGS'));
90
-        $fbtypeSelect->addOption(\constant('CO_' . $moduleDirNameUpper . '_' . 'FB_TYPE_TESTIMONIAL'), \constant('CO_' . $moduleDirNameUpper . '_' . 'FB_TYPE_TESTIMONIAL'));
91
-        $fbtypeSelect->addOption(\constant('CO_' . $moduleDirNameUpper . '_' . 'FB_TYPE_FEATURES'), \constant('CO_' . $moduleDirNameUpper . '_' . 'FB_TYPE_FEATURES'));
92
-        $fbtypeSelect->addOption(\constant('CO_' . $moduleDirNameUpper . '_' . 'FB_TYPE_OTHERS'), \constant('CO_' . $moduleDirNameUpper . '_' . 'FB_TYPE_OTHERS'));
88
+        $fbtypeSelect->addOption(\constant('CO_'.$moduleDirNameUpper.'_'.'FB_TYPE_SUGGESTION'), \constant('CO_'.$moduleDirNameUpper.'_'.'FB_TYPE_SUGGESTION'));
89
+        $fbtypeSelect->addOption(\constant('CO_'.$moduleDirNameUpper.'_'.'FB_TYPE_BUGS'), \constant('CO_'.$moduleDirNameUpper.'_'.'FB_TYPE_BUGS'));
90
+        $fbtypeSelect->addOption(\constant('CO_'.$moduleDirNameUpper.'_'.'FB_TYPE_TESTIMONIAL'), \constant('CO_'.$moduleDirNameUpper.'_'.'FB_TYPE_TESTIMONIAL'));
91
+        $fbtypeSelect->addOption(\constant('CO_'.$moduleDirNameUpper.'_'.'FB_TYPE_FEATURES'), \constant('CO_'.$moduleDirNameUpper.'_'.'FB_TYPE_FEATURES'));
92
+        $fbtypeSelect->addOption(\constant('CO_'.$moduleDirNameUpper.'_'.'FB_TYPE_OTHERS'), \constant('CO_'.$moduleDirNameUpper.'_'.'FB_TYPE_OTHERS'));
93 93
         $form->addElement($fbtypeSelect, true);
94 94
 
95 95
         $editorConfigs           = [];
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
         $configHandler           = \xoops_getHandler('config');
105 105
         $config                  = &$configHandler->getConfigsByCat(0, $module->getVar('mid'));
106 106
         $editorConfigs['editor'] = $config['general_editor'];
107
-        $editor                  = new \XoopsFormEditor(\constant('CO_' . $moduleDirNameUpper . '_' . 'FB_TYPE_CONTENT'), 'fb_content', $editorConfigs);
107
+        $editor                  = new \XoopsFormEditor(\constant('CO_'.$moduleDirNameUpper.'_'.'FB_TYPE_CONTENT'), 'fb_content', $editorConfigs);
108 108
         $form->addElement($editor, true);
109 109
 
110 110
         $form->addElement(new \XoopsFormHidden('op', 'send'));
Please login to merge, or discard this patch.