Completed
Pull Request — master (#1104)
by Tim
07:38
created
src/AppserverIo/Appserver/Core/AbstractExtractor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -350,7 +350,7 @@
 block discarded – undo
350 350
     /**
351 351
      * Returns the service instance to use.
352 352
      *
353
-     * @return \AppserverIo\Appserver\Core\Api\AbstractFileOperationService $service The service to use
353
+     * @return string $service The service to use
354 354
      */
355 355
     public function getService()
356 356
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Api/Node/SecurityConstraintNode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
      * Initializes the node with the passed values.
64 64
      *
65 65
      * @param \AppserverIo\Configuration\Interfaces\NodeValueInterface         $displayName            The display name information
66
-     * @param array                                                            $webResourceCollections The array with the web resource collection information
66
+     * @param WebResourceCollectionNode[]                                                            $webResourceCollections The array with the web resource collection information
67 67
      * @param \AppserverIo\Appserver\Core\Api\Node\AuthConstraintNodeInterface $authConstraint         The auth constraint information
68 68
      */
69 69
     public function __construct(
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Api/Node/WebResourceCollectionNode.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,8 +80,8 @@
 block discarded – undo
80 80
      *
81 81
      * @param \AppserverIo\Configuration\Interfaces\NodeValueInterface $webResourceName     The web resource name information
82 82
      * @param \AppserverIo\Configuration\Interfaces\NodeValueInterface $description         The description information
83
-     * @param array                                                    $urlPatterns         The array with the URL pattern information
84
-     * @param array                                                    $httpMethods         The array with the HTTP method information
83
+     * @param UrlPatternNode[]                                                    $urlPatterns         The array with the URL pattern information
84
+     * @param HttpMethodNode[]                                                    $httpMethods         The array with the HTTP method information
85 85
      * @param array                                                    $httpMethodOmissions The array with the HTTP method omission information
86 86
      */
87 87
     public function __construct(
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Listeners/StartContainersListener.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
      * Return's the system configuration with the initialized container
109 109
      * node instances.
110 110
      *
111
-     * @return \AppserverIo\Appserver\Core\Api\DeploymentService The deployment service
111
+     * @return ApplicationServerInterface The deployment service
112 112
      */
113 113
     protected function getDeploymentService()
114 114
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Scanner/AbstractScanner.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -367,7 +367,7 @@
 block discarded – undo
367 367
      * @param string|null $distribution Distribution to search a version for
368 368
      * @param array       $etcList      List of already collected AND flipped release files we need to filter
369 369
      *
370
-     * @return string|boolean
370
+     * @return false|string
371 371
      */
372 372
     protected function getDistributionVersion($distribution = null, $etcList = array())
373 373
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Scanner/LogrotateScanner.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@
 block discarded – undo
234 234
     /**
235 235
      * Getter for UNIX timestamp at which the next rotation has to take.
236 236
      *
237
-     * @return string The next rotation date as UNIX timestamp
237
+     * @return integer The next rotation date as UNIX timestamp
238 238
      */
239 239
     protected function getNextRotationDate()
240 240
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Utilities/FileSystem.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      * @param string $path Relative or absolute path to a file or directory which should be processed.
53 53
      * @param int    $perm The permissions any file or dir should get.
54 54
 
55
-     * @return bool
55
+     * @return boolean|null
56 56
      */
57 57
     public static function chmod($path, $perm)
58 58
     {
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      * @param int      $user  The user that should gain owner rights.
76 76
      * @param int|null $group The group that should gain group rights.
77 77
      *
78
-     * @return bool
78
+     * @return null|boolean
79 79
      */
80 80
     public static function chown($path, $user, $group = null)
81 81
     {
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
      * @param int    $filePerm The permissions any found files should get.
335 335
      * @param int    $dirPerm  The permissions any found folder should get.
336 336
      *
337
-     * @return void
337
+     * @return null|false
338 338
      */
339 339
     public static function recursiveChmod($path, $filePerm = 0644, $dirPerm = 0755)
340 340
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/DependencyInjectionContainer/ObjectManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
     /**
75 75
      * Injects the additional directories to be parsed when looking for servlets.
76 76
      *
77
-     * @param array $directories The additional directories to be parsed
77
+     * @param \AppserverIo\Appserver\Core\Api\Node\DirectoryNode[] $directories The additional directories to be parsed
78 78
      *
79 79
      * @return void
80 80
      */
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/DependencyInjectionContainer/Provider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -438,7 +438,7 @@
 block discarded – undo
438 438
      *
439 439
      * @param \AppserverIo\Psr\EnterpriseBeans\Description\NameAwareDescriptorInterface $objectDescriptor The object descriptor with the dependencies
440 440
      *
441
-     * @return object The instance
441
+     * @return string The instance
442 442
      */
443 443
     public function createInstance(NameAwareDescriptorInterface $objectDescriptor)
444 444
     {
Please login to merge, or discard this patch.