✏️ 正在编辑: ImportacaoDiretaFactory.php
路径:
/srv/systems_dir/yuppiecred-lidernegocios/library/Core/Banco/Service/ImportacaoDiretaFactory.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Core_Banco_Service_ImportacaoDiretaFactory { public static function create($bancoNome) { switch (trim($bancoNome)) { case 'BANRISUL': return new Core_Banco_Service_Banrisul_BanrisulRest(); case 'BANRISUL-COMISSAO': return new Core_Banco_Service_Banrisul_BanrisulRest(true); case 'SAFRA': return new Core_Banco_Service_Safra_Api(); case 'BMG': return new Core_Banco_Service_Bmg_WebService(); case 'BONSUCESSO-STATUS': return new Core_Banco_Service_BonsucessoStatus(); case 'FACTA': return new Core_Banco_Service_Facta_Rest(); case 'PAN': return new Core_Banco_Service_Pan_Status(); case 'MERCANTIL': return new Core_Banco_Service_Mercantil_Api(); case 'C6 BANK': return new Core_Banco_Service_C6_Fgts(); case 'BEVICRED': return new Core_Banco_Service_Bevicred_Api(); case 'CREDFRANCO': return new Core_Banco_Service_Credfranco_Api(); case 'ICRED': return new Core_Banco_Service_Icred_Fgts(); default: throw new Yuppie_Exception('Banco/Api selecionado não possui importação automática no sistema: ' . $bancoNome); } } }
💾 保存文件
← 返回文件管理器