Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelestilopetshop.meupet.app
/
vendor
/
box
/
spout
/
src
/
Spout
/
Reader
/
Common
/
Creator
/
Editing: InternalEntityFactoryInterface.php
<?php namespace Box\Spout\Reader\Common\Creator; use Box\Spout\Common\Entity\Cell; use Box\Spout\Common\Entity\Row; /** * Interface EntityFactoryInterface */ interface InternalEntityFactoryInterface { /** * @param Cell[] $cells * @return Row */ public function createRow(array $cells = []); /** * @param mixed $cellValue * @return Cell */ public function createCell($cellValue); }
Save
Cancel