/
home
/
techb158
/
ileadtechnology.com
/
vendor
/
mpdf
/
mpdf
/
src
/
Container
/
/home/techb158/ileadtechnology.com/vendor/mpdf/mpdf/src/Container
mkdir
upload
Name
Size
Mode
Actions
ContainerInterface.php
124
0644
edit
dl
rm
NotFoundException.php
91
0644
edit
dl
rm
SimpleContainer.php
542
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/vendor/mpdf/mpdf/src/Container/SimpleContainer.php
(542B)
<?php namespace Mpdf\Container; class SimpleContainer implements \Mpdf\Container\ContainerInterface { private $services; public function __construct(array $services) { $this->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; } }
Save
cmd:
run