uawdijnntqw1x1x1
IP : 216.73.216.84
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
setasign
/
fpdi
/
src
/
PdfParser
/
Type
/
PdfNumeric.php
/
/
<?php /** * This file is part of FPDI * * @package setasign\Fpdi * @copyright Copyright (c) 2024 Setasign GmbH & Co. KG (https://www.setasign.com) * @license http://opensource.org/licenses/mit-license The MIT License */ namespace setasign\Fpdi\PdfParser\Type; /** * Class representing a numeric PDF object */ class PdfNumeric extends PdfType { /** * Helper method to create an instance. * * @param int|float $value * @return PdfNumeric */ public static function create($value) { $v = new self(); $v->value = $value + 0; return $v; } /** * Ensures that the passed value is a PdfNumeric instance. * * @param mixed $value * @return self * @throws PdfTypeException */ public static function ensure($value) { return PdfType::ensureType(self::class, $value, 'Numeric value expected.'); } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/setasign/fpdi/src/PdfParser/Type/PdfNumeric.php