File "IterableItemCast.php"

Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Casts/IterableItemCast.php
File size: 369 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\LaravelData\Casts;

use Spatie\LaravelData\Support\Creation\CreationContext;
use Spatie\LaravelData\Support\DataProperty;

interface IterableItemCast
{
    /**
     * @param array<string, mixed> $properties
     */
    public function castIterableItem(DataProperty $property, mixed $value, array $properties, CreationContext $context): mixed;
}