@@ -10,7 +10,6 @@ class IOFactory
1010 * Search locations.
1111 *
1212 * @var array
13- * @static
1413 */
1514 private static $ searchLocations = [
1615 ['type ' => 'IWriter ' , 'path ' => 'PhpSpreadsheet/Writer/{0}.php ' , 'class ' => '\\PhpOffice \\PhpSpreadsheet \\Writer \\{0} ' ],
@@ -21,7 +20,6 @@ class IOFactory
2120 * Autoresolve classes.
2221 *
2322 * @var array
24- * @static
2523 */
2624 private static $ autoResolveClasses = [
2725 'Xlsx ' ,
@@ -44,8 +42,6 @@ private function __construct()
4442 /**
4543 * Get search locations.
4644 *
47- * @static
48- *
4945 * @return array
5046 */
5147 public static function getSearchLocations ()
@@ -56,8 +52,6 @@ public static function getSearchLocations()
5652 /**
5753 * Set search locations.
5854 *
59- * @static
60- *
6155 * @param array $value
6256 *
6357 * @throws Reader\Exception
@@ -70,8 +64,6 @@ public static function setSearchLocations(array $value)
7064 /**
7165 * Add search location.
7266 *
73- * @static
74- *
7567 * @param string $type Example: IWriter
7668 * @param string $location Example: PhpSpreadsheet/Writer/{0}.php
7769 * @param string $classname Example: Writer\{0}
@@ -84,8 +76,6 @@ public static function addSearchLocation($type, $location, $classname)
8476 /**
8577 * Create Writer\IWriter.
8678 *
87- * @static
88- *
8979 * @param Spreadsheet $spreadsheet
9080 * @param string $writerType Example: Xlsx
9181 *
@@ -126,8 +116,6 @@ public static function createWriter(Spreadsheet $spreadsheet, $writerType)
126116 /**
127117 * Create Reader\IReader.
128118 *
129- * @static
130- *
131119 * @param string $readerType Example: Xlsx
132120 *
133121 * @throws Reader\Exception
@@ -158,8 +146,6 @@ public static function createReader($readerType)
158146 /**
159147 * Loads Spreadsheet from file using automatic Reader\IReader resolution.
160148 *
161- * @static
162- *
163149 * @param string $pFilename The name of the spreadsheet file
164150 *
165151 * @throws Reader\Exception
@@ -176,8 +162,6 @@ public static function load($pFilename)
176162 /**
177163 * Identify file type using automatic Reader\IReader resolution.
178164 *
179- * @static
180- *
181165 * @param string $pFilename The name of the spreadsheet file to identify
182166 *
183167 * @throws Reader\Exception
@@ -197,8 +181,6 @@ public static function identify($pFilename)
197181 /**
198182 * Create Reader\IReader for file using automatic Reader\IReader resolution.
199183 *
200- * @static
201- *
202184 * @param string $pFilename The name of the spreadsheet file
203185 *
204186 * @throws Reader\Exception
0 commit comments