Completed
Branch master (04f1dc)
by Tim
11:24
created
src/AppserverIo/Appserver/PersistenceContainer/BeanManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     /**
70 70
      * Injects the additional directories to be parsed when looking for servlets.
71 71
      *
72
-     * @param array $directories The additional directories to be parsed
72
+     * @param \AppserverIo\Appserver\Core\Api\Node\DirectoryNode[] $directories The additional directories to be parsed
73 73
      *
74 74
      * @return void
75 75
      */
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
     /**
317 317
      * Return's the bean manager settings.
318 318
      *
319
-     * @return \AppserverIo\Appserver\PersistenceContainer\PersistenceContainerSettingsInterface The bean manager settings
319
+     * @return ManagerSettingsInterface The bean manager settings
320 320
      */
321 321
     public function getManagerSettings()
322 322
     {
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.
Appserver/PersistenceContainer/Doctrine/DoctrineLocalContextConnection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     /**
53 53
      * Initializes a new session instance.
54 54
      *
55
-     * @return \AppserverIo\RemoteMethodInvocation\SessionInterface The session instance
55
+     * @return string The session instance
56 56
      * @see \AppserverIo\RemoteMethodInvocation\ConnectionInterface::createContextSession()
57 57
      */
58 58
     public function createContextSession()
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/PersistenceContainer/PersistenceManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     /**
94 94
      * Return's the bean manager settings.
95 95
      *
96
-     * @return \AppserverIo\Appserver\PersistenceContainer\PersistenceContainerSettingsInterface The bean manager settings
96
+     * @return ManagerSettingsInterface The bean manager settings
97 97
      */
98 98
     public function getManagerSettings()
99 99
     {
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
      * Deploys the entity manager described by the passed XML node.
191 191
      *
192 192
      * @param \AppserverIo\Psr\Application\ApplicationInterface            $application         The application instance
193
-     * @param \AppserverIo\Appserver\Core\Api\PersistenceUnitNodeInterface $persistenceUnitNode The XML node that describes the entity manager
193
+     * @param PersistenceUnitNodeInterface $persistenceUnitNode The XML node that describes the entity manager
194 194
      *
195 195
      * @return void
196 196
      */
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/Authenticator/FormAuthenticator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -579,7 +579,7 @@
 block discarded – undo
579 579
     /**
580 580
      * Returns the parsed password.
581 581
      *
582
-     * @return \AppserverIo\Lang\String The password
582
+     * @return string|null The password
583 583
      */
584 584
     public function getPassword()
585 585
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/ServletEngine/Http/Request.php 1 patch
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
      *
559 559
      * @param string $documentRoot The document root
560 560
      *
561
-     * @return void
561
+     * @return string
562 562
      */
563 563
     public function setDocumentRoot($documentRoot)
564 564
     {
@@ -666,7 +666,7 @@  discard block
 block discarded – undo
666 666
     /**
667 667
      * Return content
668 668
      *
669
-     * @return string $content
669
+     * @return resource $content
670 670
      */
671 671
     public function getBodyContent()
672 672
     {
@@ -912,7 +912,7 @@  discard block
 block discarded – undo
912 912
      *
913 913
      * @param boolean $create TRUE to create a new session, else FALSE
914 914
      *
915
-     * @return null|\AppserverIo\Psr\Servlet\Http\HttpSessionInterface The session instance
915
+     * @return null|SessionWrapper The session instance
916 916
      *
917 917
      * @throws \Exception
918 918
      */
@@ -1040,7 +1040,7 @@  discard block
 block discarded – undo
1040 1040
      *
1041 1041
      * @param string $name The header key to name
1042 1042
      *
1043
-     * @return string|null
1043
+     * @return string
1044 1044
      */
1045 1045
     public function getHeader($name)
1046 1046
     {
@@ -1198,7 +1198,7 @@  discard block
 block discarded – undo
1198 1198
     /**
1199 1199
      * Returns query string of the actual request.
1200 1200
      *
1201
-     * @return string|null The query string of the actual request
1201
+     * @return string The query string of the actual request
1202 1202
      */
1203 1203
     public function getQueryString()
1204 1204
     {
@@ -1269,7 +1269,7 @@  discard block
 block discarded – undo
1269 1269
      *
1270 1270
      * @param string $name The name of the server variable to be returned
1271 1271
      *
1272
-     * @return mixed The requested server variable
1272
+     * @return string The requested server variable
1273 1273
      */
1274 1274
     public function getServerVar($name)
1275 1275
     {
@@ -1293,7 +1293,7 @@  discard block
 block discarded – undo
1293 1293
     /**
1294 1294
      * Return's the authentication type.
1295 1295
      *
1296
-     * @return string|null The authentication type
1296
+     * @return string The authentication type
1297 1297
      */
1298 1298
     public function getAuthType()
1299 1299
     {
@@ -1315,7 +1315,7 @@  discard block
 block discarded – undo
1315 1315
     /**
1316 1316
      * Return's a PrincipalInterface object containing the name of the current authenticated user.
1317 1317
      *
1318
-     * @return \AppserverIo\Psr\Security\PrincipalInterface|null The user principal
1318
+     * @return PrincipalInterface The user principal
1319 1319
      */
1320 1320
     public function getUserPrincipal()
1321 1321
     {
@@ -1359,7 +1359,7 @@  discard block
 block discarded – undo
1359 1359
      * Use the container login mechanism configured for the servlet context to authenticate the user making this
1360 1360
      * request. This method may modify and commit the passed servlet response.
1361 1361
      *
1362
-     * @param AppserverIo\Psr\Servlet\Http\HttpServletResponseInterface $servletResponse The servlet response
1362
+     * @param HttpServletResponseInterface $servletResponse The servlet response
1363 1363
      *
1364 1364
      * @return boolean TRUE when non-null values were or have been established as the values returned by getRemoteUser, else FALSE
1365 1365
      */
Please login to merge, or discard this patch.