Completed
Push — develop ( 9193e7...62056c )
by Jaap
12:45 queued 02:43
created
Validator/Constraints/Functions/AreAllArgumentsValidValidator.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -141,8 +141,6 @@
 block discarded – undo
141 141
     /**
142 142
      * Check if parameter exists for argument.
143 143
      *
144
-     * @param Collection $params
145
-     * @param Collection $arguments
146 144
      */
147 145
     protected function checkParamsExists()
148 146
     {
Please login to merge, or discard this patch.
Plugin/Core/Descriptor/Validator/Functions/AreAllArgumentsValid.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
      * @param BaseReflector     $element
112 112
      * @param Tag[]             $params   The list of param tags to validate against.
113 113
      *
114
-     * @return bool whether an issue occurred.
114
+     * @return null|Error whether an issue occurred.
115 115
      */
116 116
     protected function isArgumentInDocBlock($index, ArgumentReflector $argument, BaseReflector $element, array $params)
117 117
     {
Please login to merge, or discard this patch.
tests/ReferenceImplementation.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -174,6 +174,9 @@  discard block
 block discarded – undo
174 174
     {
175 175
         const INTERFACE_CONSTANT = 'test';
176 176
 
177
+        /**
178
+         * @return SubInterface|null
179
+         */
177 180
         public function publicMethod();
178 181
     }
179 182
 
@@ -183,6 +186,10 @@  discard block
 block discarded – undo
183 186
      */
184 187
     interface AnotherSuperInterface
185 188
     {
189
+
190
+        /**
191
+         * @return void
192
+         */
186 193
         static public function staticMethod();
187 194
     }
188 195
 }
Please login to merge, or discard this patch.
src/phpDocumentor/Configuration.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
     /**
157 157
      * Returns which templates and custom transformations need to be applied to the parsed data.
158 158
      *
159
-     * @return Transformer\Configuration\Transformations
159
+     * @return Transformations[]
160 160
      */
161 161
     public function getTransformations()
162 162
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Descriptor/ArgumentDescriptor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
      *
118 118
      * @param boolean $isVariadic
119 119
      *
120
-     * @return false
120
+     * @return false|null
121 121
      */
122 122
     public function setVariadic($isVariadic)
123 123
     {
Please login to merge, or discard this patch.
phpDocumentor/Descriptor/Builder/Reflector/Tags/TypeCollectionAssembler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
      *
111 111
      * @param string $type
112 112
      *
113
-     * @return string|boolean
113
+     * @return string|false
114 114
      */
115 115
     protected function findClassNameForType($type)
116 116
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Descriptor/Cache/ProjectDescriptorMapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
      *
99 99
      * @throws \Exception Rethrows exception if nessesary
100 100
      *
101
-     * @return void
101
+     * @return Settings
102 102
      */
103 103
     protected function igBinaryCompatibleCacheClear($key, $e)
104 104
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Descriptor/ClassDescriptor.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -88,6 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
     /**
90 90
      * {@inheritDoc}
91
+     * @param boolean $final
91 92
      */
92 93
     public function setFinal($final)
93 94
     {
@@ -104,6 +105,7 @@  discard block
 block discarded – undo
104 105
 
105 106
     /**
106 107
      * {@inheritDoc}
108
+     * @param boolean $abstract
107 109
      */
108 110
     public function setAbstract($abstract)
109 111
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Descriptor/InterfaceDescriptor.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -133,6 +133,9 @@
 block discarded – undo
133 133
         return $inheritedMethods;
134 134
     }
135 135
 
136
+    /**
137
+     * @param string $package
138
+     */
136 139
     public function setPackage($package)
137 140
     {
138 141
         parent::setPackage($package);
Please login to merge, or discard this patch.