| Current Path : /var/www/homesaver/www/bitrix/modules/rest/lib/ |
| Current File : /var/www/homesaver/www/bitrix/modules/rest/lib/AppForm.php |
<?php
namespace Bitrix\Rest;
class AppForm
{
public function __construct(
private string $config
)
{}
public function sendShowMessage(MessageTransportInterface $transport): bool
{
return $transport->send('showForm', ['config' => $this->config]);
}
}