Completed
Pull Request — master (#348)
by
unknown
12:57
created
src/Reader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
     /**
155 155
      * Returns the row at a given offset.
156 156
      *
157
-     * @return array|false
157
+     * @return string[]
158 158
      */
159 159
     protected function seekRow(int $offset)
160 160
     {
Please login to merge, or discard this patch.
src/Polyfill/EmptyEscapeParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
      *
98 98
      * @param SplFileObject|Stream $document
99 99
      *
100
-     * @return Generator|array[]
100
+     * @return Generator
101 101
      */
102 102
     public static function parse($document): Generator
103 103
     {
Please login to merge, or discard this patch.
src/XMLConverter.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
      * as attribute to the returned DOMElement
151 151
      *
152 152
      * @param int|string $node_name
153
-     * @param string $field_override Override the field type
153
+     * @param string $type_override Override the field type
154 154
      */
155 155
     protected function fieldToElementWithAttribute(DOMDocument $doc, string $value, $node_name, string $type_override = null): DOMElement
156 156
     {
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
      * Convert Cell to Item.
165 165
      *
166 166
      * @param string $value Record item value
167
-     * @param string $field_override Override the field type
167
+     * @param string $type_override Override the field type
168 168
      */
169 169
     protected function fieldToElement(DOMDocument $doc, string $value, string $type_override = null): DOMElement
170 170
     {
Please login to merge, or discard this patch.