File "GetFromQueryParamAttribute.php"

Full Path: /var/www/html/back/vendor/knuckleswtf/scribe/src/Extracting/Strategies/QueryParameters/GetFromQueryParamAttribute.php
File size: 396 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Knuckles\Scribe\Extracting\Strategies\QueryParameters;

use Knuckles\Scribe\Attributes\QueryParam;
use Knuckles\Scribe\Extracting\Strategies\GetParamsFromAttributeStrategy;

/**
 * @extends GetParamsFromAttributeStrategy<QueryParam>
 */
class GetFromQueryParamAttribute extends GetParamsFromAttributeStrategy
{
    protected static array $attributeNames = [QueryParam::class];
}