28 lines
538 B
PHP
Executable File
28 lines
538 B
PHP
Executable File
<?php
|
|
namespace IpSupply\ChatMessage\Helper\Request;
|
|
|
|
use IpSupply\ChatMessage\Helper\Authentication;
|
|
|
|
abstract class ParametersAbstract implements ParametersInterface
|
|
{
|
|
/**
|
|
* @var Authentication;
|
|
*/
|
|
protected $authentication;
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function setAuthentication(Authentication $authentication)
|
|
{
|
|
$this->authentication = $authentication;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getAuthentication()
|
|
{
|
|
return $this->authentication;
|
|
}
|
|
} |