12 lines
186 B
PHP
12 lines
186 B
PHP
<?php namespace Tests\Support;
|
|
|
|
use CodeIgniter\CodeIgniter;
|
|
|
|
class MockCodeIgniter extends CodeIgniter
|
|
{
|
|
protected function callExit($code)
|
|
{
|
|
// Do not call exit() in testing.
|
|
}
|
|
}
|