CLI Print Pretty

This commit is contained in:
Mostafa Khudair 2020-07-31 21:49:13 +02:00 committed by GitHub
parent 6616e8212f
commit dcc385c6dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,6 +40,7 @@
namespace CodeIgniter\CLI;
use CodeIgniter\Controller;
use Config\Services;
/**
* Command runner
@ -61,7 +62,7 @@ class CommandRunner extends Controller
*/
public function __construct()
{
$this->commands = service('commands');
$this->commands = Services::commands();
}
/**