From 15df96bb227924acced562939f75a36bcb3279f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Kucha=C5=99?= Date: Wed, 22 Aug 2018 12:08:03 +0200 Subject: [PATCH] fixed typehint (#307) --- src/Dibi/Reflection/Column.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Dibi/Reflection/Column.php b/src/Dibi/Reflection/Column.php index 178dab3..102dfee 100644 --- a/src/Dibi/Reflection/Column.php +++ b/src/Dibi/Reflection/Column.php @@ -76,7 +76,7 @@ class Column } - public function getType(): string + public function getType(): ?string { return Dibi\Helpers::getTypeCache()->{$this->info['nativetype']}; }