mirror of https://github.com/flightphp/core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
415 B
22 lines
415 B
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace tests\classes;
|
|
|
|
use Ahc\Cli\IO\Interactor;
|
|
|
|
class NoExitInteractor extends Interactor
|
|
{
|
|
public function error(string $text, bool $exit = false): self
|
|
{
|
|
$this->writer()->error($text, 0);
|
|
return $this;
|
|
}
|
|
public function warn(string $text, bool $exit = false): self
|
|
{
|
|
$this->writer()->warn($text, 0);
|
|
return $this;
|
|
}
|
|
}
|