Sid Gifari File Manager
🏠 Root
/
home
/
nradmin
/
www
/
wp-content
/
plugins
/
wp-optimize
/
vendor
/
rosell-dk
/
webp-convert
/
src
/
Options
/
📝 Editing: IntegerOrNullOption.php
<?php namespace WebPConvert\Options; use WebPConvert\Options\IntegerOption; use WebPConvert\Options\Exceptions\InvalidOptionValueException; /** * Abstract option class * * @package WebPConvert * @author Bjørn Rosell <it@rosell.dk> * @since Class available since Release 2.0.0 */ class IntegerOrNullOption extends IntegerOption { protected $schemaType = ['integer', 'null']; public function __construct($id, $defaultValue, $minValue = null, $maxValue = null) { parent::__construct($id, $defaultValue, $minValue, $maxValue); } public function check() { $this->checkMinMax(); $valueType = gettype($this->getValue()); if (!in_array($valueType, ['integer', 'NULL'])) { throw new InvalidOptionValueException( 'The "' . $this->id . '" option must be either integer or NULL. ' . 'You however provided a value of type: ' . $valueType ); } } public function getValueForPrint() { if (gettype($this->getValue() == 'NULL')) { return 'null (not set)'; } return parent::getValueForPrint(); } public function getDefinition() { $obj = parent::getDefinition(); return $obj; } }
💾 Save
❌ Cancel
Sid Gifari File Manager v1.0 | Terminal Auto-Sync Enabled | Current Path: /home/nradmin/www/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options