for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace AlecRabbit\Control;
use AlecRabbit\ConsoleColour\ConsoleColor;
class Cursor
{
public function show(): string
return ConsoleColor::ESC_CHAR . '[?25h' . ConsoleColor::ESC_CHAR . '[?0c';
}
public function hide(): string
return ConsoleColor::ESC_CHAR . '[?25l';