%PDF- %PDF-
Direktori : /www/loslex/test/vendor/livewire/livewire/src/Mechanisms/HandleComponents/Synthesizers/ |
Current File : /www/loslex/test/vendor/livewire/livewire/src/Mechanisms/HandleComponents/Synthesizers/IntSynth.php |
<?php namespace Livewire\Mechanisms\HandleComponents\Synthesizers; // This synth exists solely to capture empty strings being set to integer properties... class IntSynth extends Synth { public static $key = 'int'; static function match($target) { return false; } static function matchByType($type) { return $type === 'int'; } static function hydrateFromType($type, $value) { if ($value === '' || $value === null) return null; if ((int) $value == $value) return (int) $value; return $value; } }