mirror of
https://gh.wpcy.net/https://github.com/Wouter0100/freescout-postal.git
synced 2026-04-18 05:52:14 +08:00
17 lines
285 B
PHP
17 lines
285 B
PHP
<?php
|
|
|
|
namespace Modules\Postal\Entities;
|
|
|
|
use Symfony\Component\Console\Output\ConsoleOutput;
|
|
|
|
class FetchEmails extends \App\Console\Commands\FetchEmails
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->output = new ConsoleOutput();
|
|
}
|
|
|
|
}
|