mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 13:35:54 +00:00
20 lines
370 B
PHP
20 lines
370 B
PHP
<?php
|
|
|
|
namespace App\Logger;
|
|
|
|
use Illuminate\Console\Concerns\InteractsWithIO;
|
|
use Symfony\Component\Console\Output\ConsoleOutputInterface;
|
|
|
|
class Logger
|
|
{
|
|
use InteractsWithIO;
|
|
|
|
/** @var ConsoleOutputInterface */
|
|
protected $output;
|
|
|
|
public function __construct(ConsoleOutputInterface $consoleOutput)
|
|
{
|
|
$this->output = $consoleOutput;
|
|
}
|
|
}
|