Your IP : 216.73.216.95


Current Path : /var/www/ljmtc/cbt/lib/spout/src/Spout/Reader/ODS/Creator/
Upload File :
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);
    }
}