From 73eca107c7a315f129693fc052bdabbe7fe3abb9 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 9 Aug 2023 12:34:55 +0200 Subject: [PATCH] dd() Laravel version --- tests/VirtualColumnTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/VirtualColumnTest.php b/tests/VirtualColumnTest.php index 952bd1c..85db0c3 100644 --- a/tests/VirtualColumnTest.php +++ b/tests/VirtualColumnTest.php @@ -111,7 +111,7 @@ class VirtualColumnTest extends TestCase /** @test */ public function encrypted_casts_work_with_virtual_column() { - dump('LARAVEL VERSION', app()::VERSION); + dd('LARAVEL VERSION', app()::VERSION); // Custom encrypted castables have to be specified in the $customEncryptedCastables static property MyModel::$customEncryptedCastables = [EncryptedCast::class];