23 lines
519 B
PHP
23 lines
519 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace KTXF\Resource\Selector;
|
|
|
|
/**
|
|
* Service-level selector
|
|
*/
|
|
class ServiceSelector extends SelectorAbstract {
|
|
|
|
protected array $keyTypes = ['string', 'int'];
|
|
protected array $valueTypes = ['boolean', CollectionSelector::class];
|
|
protected string $nestedSelector = CollectionSelector::class;
|
|
protected string $selectorName = 'CollectionSelector';
|
|
|
|
}
|