| Current Path : /var/www/html/helpdesk/vendor/codeception/base/src/Codeception/Lib/Console/ |
| Current File : /var/www/html/helpdesk/vendor/codeception/base/src/Codeception/Lib/Console/Colorizer.php |
<?php
namespace Codeception\Lib\Console;
use Symfony\Component\Console\Formatter\OutputFormatter;
class Colorizer
{
/**
* @param string $string
* @return string
*/
public function colorize($string = '')
{
$fp = fopen('php://memory', 'r+');
fwrite($fp, $string);
rewind($fp);
$colorizedMessage = '';
while ($line = fgets($fp)) {
$char = $line[0];
$line = OutputFormatter::escape(trim($line));
switch ($char) {
case '+':
$line = "<info>$line</info>";
break;
case '-':
$line = "<comment>$line</comment>";
break;
}
$colorizedMessage .= $line . "\n";
}
return trim($colorizedMessage);
}
}