Completed
Pull Request — master (#39)
by Tim
35:20
created
src/AppserverIo/Routlt/Description/ActionDescriptor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
      *
173 173
      * @param \AppserverIo\Lang\Reflection\MethodInterface $reflectionMethod The reflection method with the action configuration
174 174
      *
175
-     * @return \AppserverIo\Routlt\Description\ActionDescriptorInterface The initialized descriptor
175
+     * @return null|ActionDescriptor The initialized descriptor
176 176
      */
177 177
     public function fromReflectionMethod(MethodInterface $reflectionMethod)
178 178
     {
Please login to merge, or discard this patch.
src/AppserverIo/Routlt/Description/PathDescriptor.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
     /**
206 206
      * Adds a EPB reference configuration.
207 207
      *
208
-     * @param \AppserverIo\Appserver\DependencyInjectionContainer\Interfaces\EpbReferenceDescriptorInterface $epbReference The EPB reference configuration
208
+     * @param EpbReferenceDescriptorInterface $epbReference The EPB reference configuration
209 209
      *
210 210
      * @return void
211 211
      */
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
     /**
240 240
      * Adds a resource reference configuration.
241 241
      *
242
-     * @param \AppserverIo\Appserver\DependencyInjectionContainer\Interfaces\ResReferenceDescriptorInterface $resReference The resource reference configuration
242
+     * @param ResReferenceDescriptorInterface $resReference The resource reference configuration
243 243
      *
244 244
      * @return void
245 245
      */
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
      *
308 308
      * @param \AppserverIo\Lang\Reflection\ClassInterface $reflectionClass The reflection class with the bean configuration
309 309
      *
310
-     * @return \AppserverIo\Routlt\Description\PathDescriptorInterface The initialized descriptor
310
+     * @return null|PathDescriptor The initialized descriptor
311 311
      */
312 312
     public function fromReflectionClass(ClassInterface $reflectionClass)
313 313
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
 namespace AppserverIo\Routlt\Description;
22 22
 
23 23
 use AppserverIo\Lang\Reflection\ClassInterface;
24
-use AppserverIo\Lang\Reflection\ReflectionAnnotation;
25 24
 use AppserverIo\Routlt\Annotations\Path;
26 25
 use AppserverIo\Routlt\Description\DescriptorException;
27 26
 use AppserverIo\Routlt\Description\ActionDescriptorInterface;
Please login to merge, or discard this patch.
src/AppserverIo/Routlt/Description/ResultDescriptor.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -20,9 +20,7 @@
 block discarded – undo
20 20
 
21 21
 namespace AppserverIo\Routlt\Description;
22 22
 
23
-use AppserverIo\Routlt\Annotations\Result;
24 23
 use AppserverIo\Lang\Reflection\AnnotationInterface;
25
-use AppserverIo\Lang\Reflection\ReflectionAnnotation;
26 24
 use AppserverIo\Configuration\Interfaces\NodeInterface;
27 25
 
28 26
 /**
Please login to merge, or discard this patch.
src/AppserverIo/Routlt/Interceptors/AbstractInterceptor.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
     /**
147 147
      * Executes the custom interceptor functionality.
148 148
      *
149
-     * @param AppserverIo\Psr\MetaobjectProtocol\Aop\MethodInvocationInterface $methodInvocation Initially invoked method
149
+     * @param MethodInvocationInterface $methodInvocation Initially invoked method
150 150
      *
151 151
      * @return mixed The interceptors return value
152 152
      */
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
     /**
156 156
      * Method that implements the interceptors functionality.
157 157
      *
158
-     * @param AppserverIo\Psr\MetaobjectProtocol\Aop\MethodInvocationInterface $methodInvocation Initially invoked method
158
+     * @param MethodInvocationInterface $methodInvocation Initially invoked method
159 159
      *
160 160
      * @return string|null The action result
161 161
      */
Please login to merge, or discard this patch.
src/AppserverIo/Routlt/Interceptors/WorkflowInterceptor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     /**
39 39
      * Method that implements the interceptors functionality.
40 40
      *
41
-     * @param AppserverIo\Psr\MetaobjectProtocol\Aop\MethodInvocationInterface $methodInvocation Initially invoked method
41
+     * @param MethodInvocationInterface $methodInvocation Initially invoked method
42 42
      *
43 43
      * @return string|null The action result
44 44
      */
Please login to merge, or discard this patch.
src/AppserverIo/Routlt/Results/JsonResult.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -21,12 +21,8 @@
 block discarded – undo
21 21
 namespace AppserverIo\Routlt\Results;
22 22
 
23 23
 use AppserverIo\Http\HttpProtocol;
24
-use AppserverIo\Routlt\ActionInterface;
25 24
 use AppserverIo\Routlt\Util\ActionAware;
26 25
 use AppserverIo\Routlt\Util\ValidationAware;
27
-use AppserverIo\Routlt\Util\ServletContextAware;
28
-use AppserverIo\Routlt\Description\ResultDescriptorInterface;
29
-use AppserverIo\Psr\Servlet\ServletContextInterface;
30 26
 use AppserverIo\Psr\Servlet\ServletRequestInterface;
31 27
 use AppserverIo\Psr\Servlet\ServletResponseInterface;
32 28
 
Please login to merge, or discard this patch.
src/AppserverIo/Routlt/Results/RawResult.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -20,15 +20,10 @@
 block discarded – undo
20 20
 
21 21
 namespace AppserverIo\Routlt\Results;
22 22
 
23
-use AppserverIo\Http\HttpProtocol;
24
-use AppserverIo\Routlt\ActionInterface;
25 23
 use AppserverIo\Routlt\Util\ActionAware;
26 24
 use AppserverIo\Routlt\Util\EncodingAware;
27 25
 use AppserverIo\Routlt\Util\ValidationAware;
28 26
 use AppserverIo\Routlt\Util\DefaultHeadersAware;
29
-use AppserverIo\Routlt\Util\ServletContextAware;
30
-use AppserverIo\Routlt\Description\ResultDescriptorInterface;
31
-use AppserverIo\Psr\Servlet\ServletContextInterface;
32 27
 use AppserverIo\Psr\Servlet\ServletRequestInterface;
33 28
 use AppserverIo\Psr\Servlet\ServletResponseInterface;
34 29
 
Please login to merge, or discard this patch.
src/AppserverIo/Routlt/Results/ServletDispatcherResult.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     /**
70 70
      * Initializes the instance with the configured result value.
71 71
      *
72
-     * @param \AppserverIo\Routlt\Results\ResultDescriptorInterface $resultDescriptor The result descriptor instance
72
+     * @param ResultDescriptorInterface $resultDescriptor The result descriptor instance
73 73
      */
74 74
     public function __construct(ResultDescriptorInterface $resultDescriptor)
75 75
     {
Please login to merge, or discard this patch.
src/AppserverIo/Routlt/Results/ResultTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     /**
70 70
      * Initializes the instance with the configured result value.
71 71
      *
72
-     * @param \AppserverIo\Routlt\Results\ResultDescriptorInterface $resultDescriptor The result descriptor instance
72
+     * @param ResultDescriptorInterface $resultDescriptor The result descriptor instance
73 73
      */
74 74
     public function __construct(ResultDescriptorInterface $resultDescriptor)
75 75
     {
Please login to merge, or discard this patch.