wupengfei 2 years ago
parent
commit
7e08857772
3 changed files with 4 additions and 9 deletions
  1. 2 1
      .idea/workspace.xml
  2. 0 1
      application/api/controller/Base.php
  3. 2 7
      config/tags.php

+ 2 - 1
.idea/workspace.xml

@@ -4,6 +4,7 @@
     <list default="true" id="1a36929e-c054-4875-a943-593a74e55fa4" name="Default Changelist" comment="">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/application/api/controller/Base.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/api/controller/Base.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/config/tags.php" beforeDir="false" afterPath="$PROJECT_DIR$/config/tags.php" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -218,7 +219,7 @@
       <workItem from="1673399011843" duration="19253000" />
       <workItem from="1673485061294" duration="18259000" />
       <workItem from="1673571454158" duration="9346000" />
-      <workItem from="1674867530758" duration="20873000" />
+      <workItem from="1674867530758" duration="20898000" />
     </task>
     <servers />
   </component>

+ 0 - 1
application/api/controller/Base.php

@@ -53,7 +53,6 @@ class Base extends Controller
         //if($this->user_id == 97) $this->user_id = 83;
         // 钩子注册
         $tags = config('tags.');
-        var_dump($tags);
         if(!empty($tags)) {
             foreach ($tags as $tag => $behavior) {
                 // 数组反转 保证最上面的行为优先级最高

+ 2 - 7
config/tags.php

@@ -1,11 +1,6 @@
 <?php
 return [
-    'tags'=>[
-        // 设置钩子
-        'test'=>[
-            'app\\listener\\order\\OrderListener',
-        ],
-
-
+    'test'=>[
+        'app\\listener\\order\\OrderListener',
     ],
 ];