mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-06-01 04:20:10 +02:00
19 lines
295 B
PHP
19 lines
295 B
PHP
<?php
|
|
|
|
namespace Icinga\Cli;
|
|
|
|
use Icinga\Cli\Screen\AnsiScreen;
|
|
|
|
class Screen
|
|
{
|
|
protected static $instance;
|
|
|
|
public static function instance()
|
|
{
|
|
if (self::$instance === null) {
|
|
self::$instance = new AnsiScreen();
|
|
}
|
|
return self::$instance;
|
|
}
|
|
}
|