芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/giga.mgaplay.com.br/vendor/mpdf/mpdf/src/Container/SimpleContainer.php
services = $services; } public function get($id) { if (!$this->has($id)) { throw new \Mpdf\Container\NotFoundException(sprintf('Unable to find service of key "%s"', $id)); } return $this->services[$id]; } public function has($id) { return isset($this->services[$id]); } public function getServices() { return $this->services; } }