Skip to content

Commit

Permalink
test: use use statement
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Jul 21, 2023
1 parent 29af186 commit 13782b3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/system/Debug/ExceptionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

namespace CodeIgniter\Debug;

use App\Controllers\Home;
use CodeIgniter\Database\Exceptions\DatabaseException;
use CodeIgniter\Entity\Exceptions\CastException;
use CodeIgniter\Exceptions\ConfigException;
Expand Down Expand Up @@ -157,7 +158,7 @@ public function testMaskSensitiveData(): void
'file' => '/var/www/CodeIgniter4/app/Controllers/Home.php',
'line' => 15,
'function' => 'f',
'class' => 'App\\Controllers\\Home',
'class' => Home::class,
'type' => '->',
'args' => [
0 => (object) [
Expand All @@ -180,7 +181,7 @@ public function testMaskSensitiveData(): void
'file' => '/var/www/CodeIgniter4/system/CodeIgniter.php',
'line' => 932,
'function' => 'index',
'class' => 'App\\Controllers\\Home',
'class' => Home::class,
'type' => '->',
'args' => [
],
Expand All @@ -206,7 +207,7 @@ public function testMaskSensitiveDataTraceDataKey(): void
'file' => '/var/www/CodeIgniter4/app/Controllers/Home.php',
'line' => 15,
'function' => 'f',
'class' => 'App\\Controllers\\Home',
'class' => Home::class,
'type' => '->',
'args' => [
],
Expand All @@ -215,7 +216,7 @@ public function testMaskSensitiveDataTraceDataKey(): void
'file' => '/var/www/CodeIgniter4/system/CodeIgniter.php',
'line' => 932,
'function' => 'index',
'class' => 'App\\Controllers\\Home',
'class' => Home::class,
'type' => '->',
'args' => [
],
Expand Down

0 comments on commit 13782b3

Please sign in to comment.