21 lines
474 B
PHP
21 lines
474 B
PHP
<?php
|
|
namespace ProVM\Common\Service\Remote;
|
|
|
|
use Ddeboer\Imap\ConnectionInterface;
|
|
use ProVM\Common\Service\Base as BaseService;
|
|
|
|
abstract class Base extends BaseService
|
|
{
|
|
protected ConnectionInterface $connection;
|
|
|
|
public function getConnection(): ConnectionInterface
|
|
{
|
|
return $this->connection;
|
|
}
|
|
|
|
public function setConnection(ConnectionInterface $connection): Base
|
|
{
|
|
$this->connection = $connection;
|
|
return $this;
|
|
}
|
|
} |