File "FromRouteParameterProperty.php"

Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Attributes/FromRouteParameterProperty.php
File size: 1.16 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\LaravelData\Attributes;

use Attribute;
use Spatie\LaravelData\Attributes\Concerns\ResolvesPropertyForInjectedValue;
use Spatie\LaravelData\Support\Creation\CreationContext;
use Spatie\LaravelData\Support\DataProperty;

#[Attribute(Attribute::TARGET_PROPERTY)]
class FromRouteParameterProperty extends FromRouteParameter
{
    use ResolvesPropertyForInjectedValue;

    public function __construct(
        string $routeParameter,
        public ?string $property = null,
        bool $replaceWhenPresentInPayload = true,
        /** @deprecated  */
        bool $replaceWhenPresentInBody = true
    ) {
        parent::__construct($routeParameter, $replaceWhenPresentInPayload, $replaceWhenPresentInBody);
    }

    public function resolve(
        DataProperty $dataProperty,
        mixed $payload,
        array $properties,
        CreationContext $creationContext
    ): mixed {
        return $this->resolvePropertyForInjectedValue(
            $dataProperty,
            $payload,
            $properties,
            $creationContext
        );
    }

    protected function getPropertyKey(): string|null
    {
        return $this->property;
    }
}