Completed
Push — master ( 9fb00a...8951d3 )
by Marcus
05:05
created
src/Controller/Admin/Shop/Itemgroupadmin.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
 namespace HaaseIT\HCSF\Controller\Admin\Shop;
22 22
 
23 23
 
24
-use HaaseIT\HCSF\HelperConfig;
25 24
 use HaaseIT\Toolbox\Tools;
26 25
 use Zend\ServiceManager\ServiceManager;
27 26
 
Please login to merge, or discard this patch.
src/Router.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
             } else {
71 71
                 if (!empty($routes['regex'])) {
72 72
                     foreach ($routes['regex'] as $regex) {
73
-                        $result = preg_match('(^' . $regex['regex'] . '$)', $this->sPath, $matches);
73
+                        $result = preg_match('(^'.$regex['regex'].'$)', $this->sPath, $matches);
74 74
                         if ($result) {
75 75
                             $class = $regex['controller'];
76 76
                             break;
Please login to merge, or discard this patch.
src/Controller/Sandbox.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
 
44 44
         $apiContext = new \PayPal\Rest\ApiContext(
45 45
             new \PayPal\Auth\OAuthTokenCredential(
46
-                $this->config->getShop('paypalrestv1')['clientid'],     // ClientID
46
+                $this->config->getShop('paypalrestv1')['clientid'], // ClientID
47 47
                 $this->config->getShop('paypalrestv1')['secret']      // ClientSecret
48 48
             )
49 49
         );
Please login to merge, or discard this patch.
src/Controller/Base.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
             $user = filter_input(INPUT_SERVER, 'PHP_AUTH_USER');
112 112
             $pass = filter_input(INPUT_SERVER, 'PHP_AUTH_PW');
113 113
             if (!empty($_SERVER['REDIRECT_HTTP_AUTHORIZATION'])) { // fix for php cgi mode
114
-                list($user, $pass) = explode(':' , base64_decode(substr(filter_var($_SERVER['REDIRECT_HTTP_AUTHORIZATION'], FILTER_SANITIZE_STRING), 6)));
114
+                list($user, $pass) = explode(':', base64_decode(substr(filter_var($_SERVER['REDIRECT_HTTP_AUTHORIZATION'], FILTER_SANITIZE_STRING), 6)));
115 115
             }
116 116
 
117 117
             if (!empty($user) && !empty($pass)) {
Please login to merge, or discard this patch.