{ "error_code": "500", "data": { "zhuang_tai": "token_no", "times": "1764538817" } }
<?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);
}
}