mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-05-31 03:39:06 -04:00
13 lines
156 B
PHP
13 lines
156 B
PHP
<?php
|
|
|
|
/**
|
|
* @var string $code
|
|
* @var string $message
|
|
*/
|
|
|
|
use CodeIgniter\CLI\CLI;
|
|
|
|
CLI::error('ERROR: ' . $code);
|
|
CLI::write($message);
|
|
CLI::newLine();
|