File "ObjectNormalizer.php"
Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Normalizers/ObjectNormalizer.php
File size: 289 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\LaravelData\Normalizers;
use stdClass;
class ObjectNormalizer implements Normalizer
{
public function normalize(mixed $value): ?array
{
if (! $value instanceof stdClass) {
return null;
}
return (array) $value;
}
}