Completed
Pull Request — master (#1104)
by Tim
07:38
created
src/AppserverIo/Appserver/Core/Scanner/HeartbeatScanner.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
     /**
97 97
      * Getter for the heartbeat file path
98 98
      *
99
-     * @return string
99
+     * @return \SplFileInfo
100 100
      */
101 101
     public function getHeartbeatFile()
102 102
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/MessageQueue/QueueManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     /**
138 138
      * Deploys the message queues.
139 139
      *
140
-     * @param \AppserverIo\Psr\Application\ApplicationInterface|\AppserverIo\Psr\Naming\NamingDirectoryInterface $application The application instance
140
+     * @param ApplicationInterface $application The application instance
141 141
      *
142 142
      * @return void
143 143
      */
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
      * Returns the array with queue names and the MessageListener class
256 256
      * names as values.
257 257
      *
258
-     * @return array The registered queues
258
+     * @return GenericStackable The registered queues
259 259
      */
260 260
     public function getQueues()
261 261
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/PersistenceContainer/CalendarTimer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
     /**
122 122
      * Returns the calendar base timeout instance.
123 123
      *
124
-     * @return \AppserverIo\Appserver\PersistenceContainer\CalendarBasedTimeout The calendar timeout instance
124
+     * @return ScheduleExpression The calendar timeout instance
125 125
      */
126 126
     public function getCalendarTimeout()
127 127
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/PersistenceContainer/CalendarTimerFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      * @param boolean                                                $persistent    TRUE if the newly created timer has to be persistent
90 90
      * @param \AppserverIo\Lang\Reflection\MethodInterface           $timeoutMethod The timeout method to be invoked
91 91
      *
92
-     * @return \AppserverIo\Psr\EnterpriseBeans\TimerInterface The newly created Timer.
92
+     * @return CalendarTimerBuilder The newly created Timer.
93 93
      * @throws \AppserverIo\Psr\EnterpriseBeans\EnterpriseBeansException If this method could not complete due to a system-level failure.
94 94
      * @throws \Exception
95 95
      */
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/PersistenceContainer/TimerService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -374,7 +374,7 @@
 block discarded – undo
374 374
      * bean is packaged. These include both the programmatically-created timers and
375 375
      * the automatically-created timers.
376 376
      *
377
-     * @return array<TimerInterface> A collection of javax.ejb.Timer objects.
377
+     * @return StorageInterface A collection of javax.ejb.Timer objects.
378 378
      * @throws \AppserverIo\Psr\EnterpriseBeans\EnterpriseBeansException If this method could not complete due to a system-level failure.
379 379
      **/
380 380
     public function getAllTimers()
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/ServletEngine/AbstractServletEngine.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
     /**
201 201
      * Prepares the module for upcoming request in specific context
202 202
      *
203
-     * @return boolean
203
+     * @return boolean|null
204 204
      *
205 205
      * @throws \AppserverIo\Server\Exceptions\ModuleException
206 206
      */
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/ServletEngine/Http/Session.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      *
58 58
      * @param mixed             $id         The session ID
59 59
      * @param string            $name       The session name
60
-     * @param integer|\DateTime $lifetime   Date and time after the session expires
60
+     * @param integer $lifetime   Date and time after the session expires
61 61
      * @param integer|null      $maximumAge Number of seconds until the session expires
62 62
      * @param string|null       $domain     The host to which the user agent will send this cookie
63 63
      * @param string            $path       The path describing the scope of this cookie
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/ServletEngine/ServletEngine.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
      * @param \AppserverIo\Server\Interfaces\RequestContextInterface $requestContext A requests context instance
103 103
      * @param integer                                                $hook           The current hook to process logic for
104 104
      *
105
-     * @return boolean
105
+     * @return boolean|null
106 106
      *
107 107
      * @throws \AppserverIo\Server\Exceptions\ModuleException
108 108
      */
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/ServletEngine/ServletManager.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     /**
59 59
      * Injects the additional directories to be parsed when looking for servlets.
60 60
      *
61
-     * @param array $directories The additional directories to be parsed
61
+     * @param \AppserverIo\Appserver\Core\Api\Node\DirectoryNode[] $directories The additional directories to be parsed
62 62
      *
63 63
      * @return void
64 64
      */
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
     /**
294 294
      * Returns all servlets
295 295
      *
296
-     * @return array The servlets collection
296
+     * @return StorageInterface The servlets collection
297 297
      */
298 298
     public function getServlets()
299 299
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,6 @@
 block discarded – undo
33 33
 use AppserverIo\Appserver\ServletEngine\DependencyInjection\DeploymentDescriptorParser;
34 34
 use AppserverIo\Appserver\Application\Interfaces\ManagerSettingsInterface;
35 35
 use AppserverIo\Appserver\Application\Interfaces\ManagerSettingsAwareInterface;
36
-use Doctrine\Common\Annotations\AnnotationRegistry;
37 36
 
38 37
 /**
39 38
  * The servlet manager handles the servlets registered for the application.
Please login to merge, or discard this patch.