magento2-docker/app/code/IpSupply/ChatMessage/Helper/Request/GetEventsParameters.php

24 lines
482 B
PHP
Executable File

<?php
namespace IpSupply\ChatMessage\Helper\Request;
class GetEventsParameters extends ParametersAbstract
{
use SimpleParamTrait;
/**
* @inheritDoc
*/
public function __construct(array $parameters = [])
{
$this->params = [
'queue_id' => '',
'last_event_id' => '',
'dont_block' => '',
];
foreach ($parameters as $key => $val) {
$this->params[$key] = $val;
}
}
}