Completed
Push — master ( 5f5f6d...09cfe6 )
by Park Jong-Hun
05:12 queued 02:40
created
core/ControllerDispatcher/Dispatcher.php 1 patch
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,6 @@  discard block
 block discarded – undo
62 62
     }
63 63
 
64 64
     /**
65
-     * @param  Request   $request   [description]
66 65
      * @param  ViewModel $viewModel [description]
67 66
      * @return ParameterMap
68 67
      */
@@ -93,6 +92,9 @@  discard block
 block discarded – undo
93 92
         return $result;
94 93
     }
95 94
 
95
+    /**
96
+     * @param string $action
97
+     */
96 98
     private function getEventName($action)
97 99
     {
98 100
         $handlerResolvedName = $this->getMatchedHandler()->getResolvedName();
@@ -112,6 +114,9 @@  discard block
 block discarded – undo
112 114
         return $matcher->match($this->request)['handler'];
113 115
     }
114 116
 
117
+    /**
118
+     * @param string $eventName
119
+     */
115 120
     private function triggerEvent($eventName)
116 121
     {
117 122
         Application::getInstance()
Please login to merge, or discard this patch.