Completed
Pull Request — master (#1104)
by Tim
07:38
created
src/AppserverIo/Appserver/Core/Api/AbstractNormalizer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
      * (non-PHPdoc)
80 80
      *
81 81
      * @param string $className The fully qualified class name to return the instance for
82
-     * @param array  $args      Arguments to pass to the constructor of the instance
82
+     * @param \AppserverIo\Configuration\Interfaces\ConfigurationInterface[]  $args      Arguments to pass to the constructor of the instance
83 83
      *
84 84
      * @return InitialContext
85 85
      * @see InitialContext::newInstance()
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Api/DtoNormalizer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      *
40 40
      * @param \AppserverIo\Configuration\Interfaces\ConfigurationInterface $configuration The configuration node to normalize
41 41
      *
42
-     * @return \stdClass The normalized configuration node
42
+     * @return \AppserverIo\Appserver\Core\InitialContext The normalized configuration node
43 43
      * @see \AppserverIo\Appserver\Core\Api\NormalizerInterface::normalize()
44 44
      */
45 45
     public function normalize(ConfigurationInterface $configuration)
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Api/Node/BootstrapNode.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
      * Returns the application server's default runlevel.
54 54
      *
55
-     * @return array The application server's default runlevel
55
+     * @return string The application server's default runlevel
56 56
      */
57 57
     public function getDefaultRunlevel()
58 58
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Api/Node/ContextParamNode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     /**
66 66
      * Return's the parameter value information.
67 67
      *
68
-     * @return \AppserverIo\Appserver\Core\Api\Node\ParamNameNode The parameter value information
68
+     * @return ParamValueNode The parameter value information
69 69
      */
70 70
     public function getParamValue()
71 71
     {
Please login to merge, or discard this patch.
src/AppserverIo/Appserver/Core/Api/Node/DirectoryNode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     /**
59 59
      * Returns the enforcement flag.
60 60
      *
61
-     * @return boolean The enforcement flag
61
+     * @return string The enforcement flag
62 62
      */
63 63
     public function isEnforced()
64 64
     {
Please login to merge, or discard this patch.
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/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/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.