✏️ 正在编辑: Importacao.php
路径:
/srv/systems_dir/yuppiecred-lidernegocios/application/services/Importacao.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Service_Importacao { /** @var Model_Empresa */ private $empresaModel; public function __construct() { $this->empresaModel = model('empresa'); } /** * @param int|null $subestabelecidoCsv * @param int|null $subestabelecidoForm * @return int|null */ public function getSubestabelecido( ?int $subestabelecidoCsv, ?int $subestabelecidoForm ): ?int { if ($subestabelecidoForm) { return $subestabelecidoForm; } $subestabelecido = $this->empresaModel->getEmpresaByCodigoPromotora($subestabelecidoCsv); return !empty($subestabelecido['id']) ? $subestabelecido['id'] : null; } }
💾 保存文件
← 返回文件管理器