File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 24
24
}
25
25
26
26
$ dirs = [
27
- 'tests/_support/Controllers ' ,
28
27
'tests/_support/_controller ' ,
28
+ 'tests/_support/Controllers ' ,
29
+ 'tests/_support/Entity ' ,
30
+ 'tests/_support/Entity/Cast ' ,
31
+ 'tests/_support/Models ' ,
32
+ 'tests/_support/Validation ' ,
33
+ 'tests/_support/View ' ,
29
34
'tests/system/Config/fixtures ' ,
30
35
];
31
36
Original file line number Diff line number Diff line change 20
20
/**
21
21
* PHP data <==> DataSource data converter
22
22
*
23
+ * @template TEntity of object
24
+ *
23
25
* @see \CodeIgniter\DataConverter\DataConverterTest
24
26
*/
25
27
final class DataConverter
@@ -30,8 +32,6 @@ final class DataConverter
30
32
private readonly DataCaster $ dataCaster ;
31
33
32
34
/**
33
- * @template TEntity of object
34
- *
35
35
* @param array<string, class-string> $castHandlers Custom convert handlers
36
36
*
37
37
* @internal
@@ -105,8 +105,6 @@ public function toDataSource(array $phpData): array
105
105
/**
106
106
* Takes database data array and creates a specified type object.
107
107
*
108
- * @template TEntity of object
109
- *
110
108
* @param class-string<TEntity> $classname
111
109
* @param array<string, mixed> $row Raw data from database
112
110
*
You can’t perform that action at this time.
0 commit comments