From b7403e8286571789b5399393f6ba1dc846a334b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20Dav=C3=ADdek?= Date: Tue, 23 Oct 2018 05:40:41 +0200 Subject: [PATCH] Call static method with static keyword instead of self --- src/PhpSpreadsheet/Cell/DefaultValueBinder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PhpSpreadsheet/Cell/DefaultValueBinder.php b/src/PhpSpreadsheet/Cell/DefaultValueBinder.php index 0e35ae2fe5..7cbb6cca27 100644 --- a/src/PhpSpreadsheet/Cell/DefaultValueBinder.php +++ b/src/PhpSpreadsheet/Cell/DefaultValueBinder.php @@ -31,7 +31,7 @@ public function bindValue(Cell $cell, $value) } // Set value explicit - $cell->setValueExplicit($value, self::dataTypeForValue($value)); + $cell->setValueExplicit($value, static::dataTypeForValue($value)); // Done! return true;