File "NormalizeComponentPropertiesForJavaScript.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/HydrationMiddleware/NormalizeComponentPropertiesForJavaScript.php
File size: 924 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Livewire\HydrationMiddleware;
use Illuminate\Support\Collection;
use Illuminate\Database\Eloquent\Collection as EloquentCollection;
class NormalizeComponentPropertiesForJavaScript extends NormalizeDataForJavaScript implements HydrationMiddleware
{
public static function hydrate($instance, $request)
{
//
}
public static function dehydrate($instance, $response)
{
foreach ($instance->getPublicPropertiesDefinedBySubClass() as $key => $value) {
if (is_array($value) || $value instanceof Collection) {
$instance->$key = static::reindexArrayWithNumericKeysOtherwiseJavaScriptWillMessWithTheOrder($value);
}
if ($value instanceof EloquentCollection) {
// Preserve collection items order by reindexing underlying array.
$instance->$key = $value->values();
}
}
}
}