From 227f911dced04e884d9f49272e05efe12cb7a530 Mon Sep 17 00:00:00 2001 From: fsociety Date: Thu, 21 Nov 2024 20:33:13 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20refactor(CountryPolicy):=20remov?= =?UTF-8?q?e=20debug=20statement=20from=20create=20method=20in=20CountryPo?= =?UTF-8?q?licy=20class?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Policies/CountryPolicy.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Policies/CountryPolicy.php b/app/Policies/CountryPolicy.php index ee16684f..58f16d35 100644 --- a/app/Policies/CountryPolicy.php +++ b/app/Policies/CountryPolicy.php @@ -37,7 +37,6 @@ class CountryPolicy extends BasePolicy */ public function create(User $user): bool { - dd($user); return $user->can((new \ReflectionClass($this))->getShortName().'.'.__FUNCTION__); }