| Current Path : /var/www/homesaver/www/bitrix/modules/rest/lib/FormConfig/ |
| Current File : /var/www/homesaver/www/bitrix/modules/rest/lib/FormConfig/ConfigProvider.php |
<?php
namespace Bitrix\Rest\FormConfig;
class ConfigProvider
{
public function __construct(private ConfigStoreInterface $store)
{
}
public function get(): array
{
return $this->store->provide();
}
}