From f0eebfe898e85291e0c5243d53a1fb75fef85afa Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 4 Feb 2019 22:29:55 +0100 Subject: [PATCH] Use global namespace+minor fixes --- Models/BatchPosting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Models/BatchPosting.php b/Models/BatchPosting.php index 9aec222..d1f2c8a 100644 --- a/Models/BatchPosting.php +++ b/Models/BatchPosting.php @@ -204,6 +204,6 @@ class BatchPosting implements \Countable */ public function count() : int { - return count($this->postings); + return \count($this->postings); } }