/
home
/
techb158
/
ileadtechnology.com
/
vendor
/
mpdf
/
mpdf
/
src
/
/home/techb158/ileadtechnology.com/vendor/mpdf/mpdf/src
mkdir
upload
Name
Size
Mode
Actions
Barcode/
-
0755
rm
Color/
-
0755
rm
Config/
-
0755
rm
Container/
-
0755
rm
Conversion/
-
0755
rm
Css/
-
0755
rm
Exception/
-
0755
rm
File/
-
0755
rm
Fonts/
-
0755
rm
Gif/
-
0755
rm
Http/
-
0755
rm
Image/
-
0755
rm
Language/
-
0755
rm
Log/
-
0755
rm
Output/
-
0755
rm
Pdf/
-
0755
rm
Shaper/
-
0755
rm
Tag/
-
0755
rm
Utils/
-
0755
rm
Writer/
-
0755
rm
AssetFetcher.php
3606
0644
edit
dl
rm
Barcode.php
6059
0644
edit
dl
rm
Cache.php
2374
0644
edit
dl
rm
CssManager.php
78247
0644
edit
dl
rm
DirectWrite.php
14929
0644
edit
dl
rm
Form.php
69010
0644
edit
dl
rm
FpdiTrait.php
11873
0644
edit
dl
rm
functions-dev.php
165
0644
edit
dl
rm
functions.php
521
0644
edit
dl
rm
Gradient.php
34875
0644
edit
dl
rm
HTMLParserMode.php
731
0644
edit
dl
rm
Hyphenator.php
5087
0644
edit
dl
rm
Mpdf.php
960920
0644
edit
dl
rm
MpdfException.php
73
0644
edit
dl
rm
MpdfImageException.php
82
0644
edit
dl
rm
Otl.php
254348
0644
edit
dl
rm
OtlDump.php
167010
0644
edit
dl
rm
PageBox.php
1049
0644
edit
dl
rm
PageFormat.php
2391
0644
edit
dl
rm
ServiceFactory.php
5929
0644
edit
dl
rm
SizeConverter.php
3388
0644
edit
dl
rm
Strict.php
1535
0644
edit
dl
rm
TableOfContents.php
33451
0644
edit
dl
rm
Tag.php
7402
0644
edit
dl
rm
TTFontFile.php
173378
0644
edit
dl
rm
TTFontFileAnalysis.php
14561
0644
edit
dl
rm
Ucdn.php
131957
0644
edit
dl
rm
Watermark.php
49
0644
edit
dl
rm
WatermarkImage.php
1196
0644
edit
dl
rm
WatermarkText.php
887
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/vendor/mpdf/mpdf/src/Strict.php
(1535B)
<?php namespace Mpdf; trait Strict { /** * @param string $name method name * @param array $args arguments */ public function __call($name, $args) { $class = method_exists($this, $name) ? 'parent' : get_class($this); throw new \Mpdf\MpdfException("Call to undefined method $class::$name()"); } /** * @param string $name lowercase method name * @param array $args arguments */ public static function __callStatic($name, $args) { $class = get_called_class(); throw new \Mpdf\MpdfException("Call to undefined static function $class::$name()"); } /** * @param string $name property name */ public function &__get($name) { $class = get_class($this); throw new \Mpdf\MpdfException("Cannot read an undeclared property $class::\$$name"); } /** * @param string $name property name * @param mixed $value property value */ public function __set($name, $value) { $class = get_class($this); throw new \Mpdf\MpdfException("Cannot write to an undeclared property $class::\$$name"); } /** * @param string $name property name * @throws \Kdyby\StrictObjects\\Mpdf\MpdfException */ public function __isset($name) { $class = get_class($this); throw new \Mpdf\MpdfException("Cannot read an undeclared property $class::\$$name"); } /** * @param string $name property name * @throws \Kdyby\StrictObjects\\Mpdf\MpdfException */ public function __unset($name) { $class = get_class($this); throw new \Mpdf\MpdfException("Cannot unset the property $class::\$$name."); } }
Save