From 80d3a2df6bb2e95ddde843e783af06795bba56e4 Mon Sep 17 00:00:00 2001 From: dschwalm Date: Mon, 6 Nov 2017 07:07:47 +0100 Subject: [PATCH] Fixed copy paste error in getTime() --- src/Wrapper/Match.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Wrapper/Match.php b/src/Wrapper/Match.php index 8d43e9e..1428fd4 100644 --- a/src/Wrapper/Match.php +++ b/src/Wrapper/Match.php @@ -173,7 +173,7 @@ public function getStatus() */ public function getTime() { - return Score::AwayPoints($this->getScore()); + return $this->time; } /**