Passed
Branch develop (905d13)
by Mariano
09:27
created
src/PowerRoute.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
     /**
70 70
      * @param string                             $routeName
71
-     * @param \PowerRoute\Common\TransactionData $transactionData
71
+     * @param TransactionData $transactionData
72 72
      */
73 73
     public function execute($routeName, TransactionData $transactionData)
74 74
     {
@@ -87,6 +87,9 @@  discard block
 block discarded – undo
87 87
         }
88 88
     }
89 89
 
90
+    /**
91
+     * @param ServerRequestInterface $request
92
+     */
90 93
     private function evaluateConditions($route, $request)
91 94
     {
92 95
         if (!$route[ConfigOptions::CONFIG_NODE_CONDITION]) {
@@ -108,6 +111,9 @@  discard block
 block discarded – undo
108 111
         throw new \RuntimeException('Invalid exception');
109 112
     }
110 113
 
114
+    /**
115
+     * @param string $matcher
116
+     */
111 117
     private function getConditionsMatcher($matcher)
112 118
     {
113 119
         if (!isset($this->conditionMatchers[$matcher])) {
Please login to merge, or discard this patch.