Current Path : /var/www/ljmtc/cbt/lib/spout/src/Spout/Reader/ODS/Creator/ |
Current File : /var/www/ljmtc/cbt/lib/spout/src/Spout/Reader/ODS/Creator/ManagerFactory.php |
<?php namespace Box\Spout\Reader\ODS\Creator; use Box\Spout\Reader\Common\Manager\RowManager; /** * Class ManagerFactory * Factory to create managers */ class ManagerFactory { /** * @param InternalEntityFactory $entityFactory Factory to create entities * @return RowManager */ public function createRowManager($entityFactory) { return new RowManager($entityFactory); } }