Skip to content

Commit cb2130c

Browse files
committed
Apply cs fixes
1 parent 3254122 commit cb2130c

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

bin/transform-source

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env php
22
<?php
33

4+
declare(strict_types=1);
5+
46
/**
57
* This file is part of CodeIgniter 4 framework.
68
*

tests/Rules/Classes/data/framework-exception.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
$e1 = new FrameworkException('Hello.');
1818
$e2 = new ViewException('Hi!');
1919
$e3 = new RuntimeException('Thanks.');
20-
$e4 = new \CodeIgniter\HTTP\Exceptions\HTTPException('Nice');
20+
$e4 = new CodeIgniter\HTTP\Exceptions\HTTPException('Nice');

tests/Type/data/bug-7.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
assertType('list<CodeIgniter\Shield\Entities\User>', $users->find([1]));
2121

2222
// Model::find() does not fail if not `array|int|string|null` but defaults to get all
23-
assertType('list<CodeIgniter\Shield\Entities\User>', $users->find(new \stdClass()));
23+
assertType('list<CodeIgniter\Shield\Entities\User>', $users->find(new stdClass()));

0 commit comments

Comments
 (0)