Completed
Push — develop ( 3723bb...c8a69d )
by Adrien
21:23 queued 13:35
created
src/PhpSpreadsheet/Reader/Xlsx.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -270,6 +270,11 @@  discard block
 block discarded – undo
270 270
         return isset($c->v) ? (string) $c->v : null;
271 271
     }
272 272
 
273
+    /**
274
+     * @param string $r
275
+     * @param string $cellDataType
276
+     * @param string $castBaseType
277
+     */
273 278
     private function castToFormula($c, $r, &$cellDataType, &$value, &$calculatedValue, &$sharedFormulas, $castBaseType)
274 279
     {
275 280
         $cellDataType = 'f';
@@ -1989,6 +1994,9 @@  discard block
 block discarded – undo
1989 1994
         }
1990 1995
     }
1991 1996
 
1997
+    /**
1998
+     * @param \PhpOffice\PhpSpreadsheet\Style\Border $docBorder
1999
+     */
1992 2000
     private static function readBorder($docBorder, $eleBorder)
1993 2001
     {
1994 2002
         if (isset($eleBorder['style'])) {
@@ -2113,6 +2121,9 @@  discard block
 block discarded – undo
2113 2121
         return preg_replace('~[^/]+/\.\./~', '', dirname($base) . "/$add");
2114 2122
     }
2115 2123
 
2124
+    /**
2125
+     * @param string $style
2126
+     */
2116 2127
     private static function toCSSArray($style)
2117 2128
     {
2118 2129
         $style = str_replace(["\r", "\n"], '', $style);
Please login to merge, or discard this patch.