Completed
Push — 4.0 ( 6a2270...a7534e )
by Marco
12:55
created
src/Comodojo/Dispatcher/Dispatcher.php 1 patch
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -94,6 +94,9 @@  discard block
 block discarded – undo
94 94
         
95 95
     }
96 96
 
97
+    /**
98
+     * @return Configuration
99
+     */
97 100
     public function configuration() {
98 101
         
99 102
         if (empty($this->configuration)) {
@@ -130,6 +133,9 @@  discard block
 block discarded – undo
130 133
 
131 134
     }
132 135
 
136
+    /**
137
+     * @return Request
138
+     */
133 139
     public function request() {
134 140
         
135 141
         if (empty($this->request)) {
@@ -142,6 +148,9 @@  discard block
 block discarded – undo
142 148
 
143 149
     }
144 150
 
151
+    /**
152
+     * @return Router
153
+     */
145 154
     public function router() {
146 155
         
147 156
         if (empty($this->router)) {
@@ -154,6 +163,9 @@  discard block
 block discarded – undo
154 163
 
155 164
     }
156 165
 
166
+    /**
167
+     * @return Response
168
+     */
157 169
     public function response() {
158 170
         
159 171
         if (empty($this->response)) {
@@ -166,6 +178,9 @@  discard block
 block discarded – undo
166 178
 
167 179
     }
168 180
 
181
+    /**
182
+     * @return null|Extra
183
+     */
169 184
     public function extra() {
170 185
         
171 186
         if (empty($this->extra)) {
@@ -272,6 +287,9 @@  discard block
 block discarded – undo
272 287
 
273 288
     }
274 289
 
290
+    /**
291
+     * @param string $name
292
+     */
275 293
     private function emitServiceSpecializedEvents($name) {
276 294
 
277 295
         $this->logger()->debug("Emitting $name service-event.");
Please login to merge, or discard this patch.