File manager - Edit - /var/www/payraty/helpdesk/vendor/livewire/livewire/src/Features/SupportFormObjects/SupportFormObjects.php
Back
<?php namespace Livewire\Features\SupportFormObjects; use ReflectionClass; use Livewire\ComponentHook; use ReflectionNamedType; class SupportFormObjects extends ComponentHook { public static function provide() { app('livewire')->propertySynthesizer( FormObjectSynth::class ); } function boot() { $this->initializeFormObjects(); } protected function initializeFormObjects() { foreach ((new ReflectionClass($this->component))->getProperties() as $property) { // Public properties only... if ($property->isPublic() !== true) continue; // Uninitialized properties only... if ($property->isInitialized($this->component)) continue; $type = $property->getType(); if (! $type instanceof ReflectionNamedType) continue; $typeName = $type->getName(); // "Form" object property types only... if (! is_subclass_of($typeName, Form::class)) continue; $form = new $typeName( $this->component, $name = $property->getName() ); $callBootMethod = FormObjectSynth::bootFormObject($this->component, $form, $name); $property->setValue($this->component, $form); $callBootMethod(); } } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0.05 |
proxy
|
phpinfo
|
Settings