summaryrefslogtreecommitdiff
path: root/src/Concerns
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2026-02-10 00:17:41 +0000
committerSam Light <samlight1994@gmail.com>2026-02-10 00:17:41 +0000
commit47c3c4b4e772c30dac12169300e20346fa47b71f (patch)
tree5b469e853b395a8b524f60c5dd7c71dfb8efe64d /src/Concerns
parentce8068292cc90e32f93aad353891be5e5108d945 (diff)
Added declare strict types
Diffstat (limited to 'src/Concerns')
-rw-r--r--src/Concerns/Makable.php2
-rw-r--r--src/Concerns/WithAttributes.php2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/Concerns/Makable.php b/src/Concerns/Makable.php
index b215b2d..e7c4433 100644
--- a/src/Concerns/Makable.php
+++ b/src/Concerns/Makable.php
@@ -1,5 +1,7 @@
<?php
+declare(strict_types=1);
+
namespace Lightscale\LaralightTables\Concerns;
trait Makable
diff --git a/src/Concerns/WithAttributes.php b/src/Concerns/WithAttributes.php
index d97f84a..dceec69 100644
--- a/src/Concerns/WithAttributes.php
+++ b/src/Concerns/WithAttributes.php
@@ -1,5 +1,7 @@
<?php
+declare(strict_types=1);
+
namespace Lightscale\LaralightTables\Concerns;
use Illuminate\View\ComponentAttributeBag;