Factory should return Interface
This commit is contained in:
parent
c672558a18
commit
15aab7902a
@ -19,7 +19,7 @@ class ReaderFactory
|
|||||||
* This creates an instance of the appropriate reader, given the type of the file to be read
|
* This creates an instance of the appropriate reader, given the type of the file to be read
|
||||||
*
|
*
|
||||||
* @param string $readerType Type of the reader to instantiate
|
* @param string $readerType Type of the reader to instantiate
|
||||||
* @return \Box\Spout\Reader\CSV\Reader|\Box\Spout\Reader\XLSX\Reader
|
* @return ReaderInterface
|
||||||
* @throws \Box\Spout\Common\Exception\UnsupportedTypeException
|
* @throws \Box\Spout\Common\Exception\UnsupportedTypeException
|
||||||
*/
|
*/
|
||||||
public static function create($readerType)
|
public static function create($readerType)
|
||||||
|
@ -19,7 +19,7 @@ class WriterFactory
|
|||||||
* This creates an instance of the appropriate writer, given the type of the file to be read
|
* This creates an instance of the appropriate writer, given the type of the file to be read
|
||||||
*
|
*
|
||||||
* @param string $writerType Type of the writer to instantiate
|
* @param string $writerType Type of the writer to instantiate
|
||||||
* @return \Box\Spout\Writer\CSV\Writer|\Box\Spout\Writer\XLSX\Writer
|
* @return WriterInterface
|
||||||
* @throws \Box\Spout\Common\Exception\UnsupportedTypeException
|
* @throws \Box\Spout\Common\Exception\UnsupportedTypeException
|
||||||
*/
|
*/
|
||||||
public static function create($writerType)
|
public static function create($writerType)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user