PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
livewire
/
livewire
/
src
/
Mechanisms
/
HandleComponents
/
Synthesizers
/
Editing: StringableSynth.php
<?php namespace Livewire\Mechanisms\HandleComponents\Synthesizers; use Illuminate\Support\Stringable; class StringableSynth extends Synth { public static $key = 'str'; static function match($target) { return $target instanceof Stringable; } function dehydrate($target) { return [$target->__toString(), []]; } function hydrate($value) { return str($value); } }
SAVE
CANCEL