Completed
Push — 4.0 ( 1a2ebb...5c10ea )
by Ryo
09:45 queued 11s
created
codeception/_support/Page/Admin/ProductManagePage.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -59,6 +59,9 @@  discard block
 block discarded – undo
59 59
         return $this;
60 60
     }
61 61
 
62
+    /**
63
+     * @param integer $value
64
+     */
62 65
     public function 詳細検索_ステータス($value)
63 66
     {
64 67
         $this->tester->click(self::$詳細検索ボタン);
@@ -155,6 +158,9 @@  discard block
 block discarded – undo
155 158
         return $this;
156 159
     }
157 160
 
161
+    /**
162
+     * @param integer $rowNum
163
+     */
158 164
     public function Accept_複製する($rowNum)
159 165
     {
160 166
         $modalCssSelector = "#page_admin_product > div.c-container > div.c-contentsArea > div.c-contentsArea__cols > div > div > form > div.card.rounded.border-0.mb-4 > div.card-body.p-0 > table > tbody > tr:nth-child(${rowNum}) > td.align-middle.pr-3 > div > div:nth-child(2) div.modal";
Please login to merge, or discard this patch.
src/Eccube/EventListener/TwigInitializeListener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
         $Member = $this->requestContext->getCurrentUser();
189 189
         if ($Member instanceof Member) {
190 190
             $AuthorityRoles = $this->authorityRoleRepository->findBy(['Authority' => $Member->getAuthority()]);
191
-            $baseUrl = $event->getRequest()->getBaseUrl() . '/' . $this->eccubeConfig['eccube_admin_route'];
191
+            $baseUrl = $event->getRequest()->getBaseUrl().'/'.$this->eccubeConfig['eccube_admin_route'];
192 192
             $eccubeNav = $this->getDisplayEccubeNav($eccubeNav, $AuthorityRoles, $baseUrl);
193 193
         }
194 194
         $this->twig->addGlobal('eccubeNav', $eccubeNav);
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
                 $param = array_key_exists('param', $childNav) ? $childNav['param'] : [];
220 220
                 $url = $this->router->generate($childNav['url'], $param);
221 221
                 foreach ($AuthorityRoles as $AuthorityRole) {
222
-                    $denyUrl = str_replace('/', '\/', $baseUrl . $AuthorityRole->getDenyUrl());
222
+                    $denyUrl = str_replace('/', '\/', $baseUrl.$AuthorityRole->getDenyUrl());
223 223
                     if (preg_match("/^({$denyUrl})/i", $url)) {
224 224
                         // 権限がないURLの場合は配列から削除
225 225
                         unset($parentNav[$key]);
Please login to merge, or discard this patch.
src/Eccube/Service/PluginApiService.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
      */
109 109
     public function getPlugin($id)
110 110
     {
111
-        $url = $this->getApiUrl() . '/plugin/'.$id;
111
+        $url = $this->getApiUrl().'/plugin/'.$id;
112 112
 
113 113
         return $this->getRequestApi($url);
114 114
     }
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
     /**
104 104
      * Get a plugin
105 105
      *
106
-     * @param int|string $id Id or plugin code
106
+     * @param string $id Id or plugin code
107 107
      * @return array [$result, $info]
108 108
      */
109 109
     public function getPlugin($id)
Please login to merge, or discard this patch.