We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c357e4c commit 6df976bCopy full SHA for 6df976b
2 files changed
tests/_support/Entity/Cast/CastUUID.php …/_support/Entity/Cast/CastBinaryUUID.phptests/_support/Entity/Cast/CastUUID.php renamed to tests/_support/Entity/Cast/CastBinaryUUID.php
@@ -13,7 +13,7 @@
13
14
use CodeIgniter\Entity\Cast\BaseCast;
15
16
-class CastUUID extends BaseCast
+class CastBinaryUUID extends BaseCast
17
{
18
/**
19
* Get
tests/_support/Entity/UUID.php
@@ -12,14 +12,14 @@
12
namespace Tests\Support\Entity;
use CodeIgniter\Entity\Entity;
-use Tests\Support\Entity\Cast\CastUUID;
+use Tests\Support\Entity\Cast\CastBinaryUUID;
class UUID extends Entity
protected $casts = [
20
'id' => 'uuid',
21
];
22
protected $castHandlers = [
23
- 'uuid' => CastUUID::class,
+ 'uuid' => CastBinaryUUID::class,
24
25
}
0 commit comments