diff --git a/src/Output.php b/src/Output.php index 4257c6af..e7545565 100644 --- a/src/Output.php +++ b/src/Output.php @@ -4,27 +4,6 @@ final class Output { - /** - * @var bool $quiet Suppress output status - */ - private static bool $quiet = false; - - /** - * Suppress output - */ - public static function quiet(): void - { - self::$quiet = true; - } - - /** - * Disable suppressing output - */ - public static function disableQuiet(): void - { - self::$quiet = false; - } - /** * Display text in terminal * @@ -32,9 +11,7 @@ public static function disableQuiet(): void */ public static function text(string $text = ''): void { - if (self::$quiet === false) { - echo $text . "\n"; - } + echo $text . "\n"; } /** @@ -42,8 +19,6 @@ public static function text(string $text = ''): void */ public static function newline(): void { - if (self::$quiet === false) { - echo PHP_EOL; - } + echo PHP_EOL; } }