From a39908ea9c17a5403c478970d08855d9ff7e498f Mon Sep 17 00:00:00 2001 From: Jeffrey Wong Date: Mon, 3 Mar 2025 11:42:24 -0800 Subject: [PATCH] fix missing return types on Column --- Tests/Fixtures/Column.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/Fixtures/Column.php b/Tests/Fixtures/Column.php index 43afc63c..855ad346 100644 --- a/Tests/Fixtures/Column.php +++ b/Tests/Fixtures/Column.php @@ -18,7 +18,7 @@ public function __construct(private $name, protected $type) $this->phpName = ucfirst($this->name); } - public function isText() + public function isText(): bool { if (!$this->type) { return false; @@ -34,7 +34,7 @@ public function getSize() return $this->isText() ? 255 : 0; } - public function isNotNull() + public function isNotNull(): bool { return 'id' === $this->name; }