Completed
Branch master (04f1dc)
by Tim
11:24
created
src/AppserverIo/Appserver/Core/Api/Node/ExtractorNode.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     /**
142 142
      * Returns the flag that backups should be created.
143 143
      *
144
-     * @return boolean The flag to create backups
144
+     * @return string The flag to create backups
145 145
      */
146 146
     public function isCreateBackups()
147 147
     {
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
     /**
152 152
      * Returns the flag that backups should be restored.
153 153
      *
154
-     * @return boolean The flag to restore backups
154
+     * @return string The flag to restore backups
155 155
      */
156 156
     public function isRestoreBackups()
157 157
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Api/Node/MessageQueueNode.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     /**
54 54
      * Return's the message queue's receiver type.
55 55
      *
56
-     * @return string|null The receiver type
56
+     * @return string The receiver type
57 57
      */
58 58
     public function getType()
59 59
     {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     /**
64 64
      * Return's the message queue's destination information.
65 65
      *
66
-     * @return \AppserverIo\Description\Api\Node\ValueNode The message queue destination information
66
+     * @return DatabaseNode The message queue destination information
67 67
      */
68 68
     public function getDestination()
69 69
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Api/Node/PersistenceUnitNode.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
     /**
156 156
      * Returns the entity manager's datasource configuration.
157 157
      *
158
-     * @return AppserverIo\Appserver\Core\Api\Node\DatasourceNode The entity manager's datasource configuration
158
+     * @return DatasourceNode The entity manager's datasource configuration
159 159
      */
160 160
     public function getDatasource()
161 161
     {
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
     /**
166 166
      * Returns the entity manager's metadata configuration.
167 167
      *
168
-     * @return AppserverIo\Appserver\Core\Api\Node\MetadataConfigurationNode The entity manager's metadata configuration
168
+     * @return DatasourceNode The entity manager's metadata configuration
169 169
      */
170 170
     public function getMetadataConfiguration()
171 171
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Api/Node/SecurityConstraintNode.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,8 +62,8 @@
 block discarded – undo
62 62
     /**
63 63
      * Initializes the node with the passed values.
64 64
      *
65
-     * @param \AppserverIo\Appserver\Core\Api\Node\NodeValueInterface          $displayName            The display name information
66
-     * @param array                                                            $webResourceCollections The array with the web resource collection information
65
+     * @param NodeValueInterface          $displayName            The display name 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/WebAppNode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@
 block discarded – undo
203 203
     /**
204 204
      * Return's the session configuration information.
205 205
      *
206
-     * @return \AppserverIo\Appserver\Core\Api\Node\DisplayNameNode The session configuration
206
+     * @return SessionConfigNode The session configuration
207 207
      */
208 208
     public function getSessionConfig()
209 209
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Api/Node/WebResourceCollectionNode.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -78,10 +78,10 @@
 block discarded – undo
78 78
     /**
79 79
      * Initializes the node with the passed values.
80 80
      *
81
-     * @param \AppserverIo\Appserver\Core\Api\Node\NodeValueInterface $webResourceName     The web resource name information
82
-     * @param \AppserverIo\Appserver\Core\Api\Node\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
81
+     * @param NodeValueInterface $webResourceName     The web resource name information
82
+     * @param NodeValueInterface $description         The description 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/Api/Normalizer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      *
41 41
      * @param \AppserverIo\Configuration\Interfaces\ConfigurationInterface $configuration The configuration node to normalize
42 42
      *
43
-     * @return \stdClass The normalized configuration node
43
+     * @return \AppserverIo\Appserver\Core\InitialContext The normalized configuration node
44 44
      */
45 45
     public function normalize(ConfigurationInterface $configuration)
46 46
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Api/RecursiveNormalizer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      *
41 41
      * @param \AppserverIo\Configuration\Interfaces\ConfigurationInterface $configuration The configuration node to normalize recursive
42 42
      *
43
-     * @return \stdClass The normalized configuration node
43
+     * @return \AppserverIo\Appserver\Core\InitialContext The normalized configuration node
44 44
      */
45 45
     public function normalize(ConfigurationInterface $configuration)
46 46
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Api/ScannerService.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
 use AppserverIo\Appserver\Core\Api\Node\CronNode;
24 24
 use AppserverIo\Appserver\Core\Utilities\AppEnvironmentHelper;
25 25
 use AppserverIo\Configuration\ConfigurationException;
26
-use AppserverIo\Properties\Properties;
27 26
 use AppserverIo\Appserver\Core\Utilities\SystemPropertyKeys;
28 27
 
29 28
 /**
Please login to merge, or discard this patch.