From 249ccffceadf21e99693855d4ddd6372b17f5144 Mon Sep 17 00:00:00 2001 From: "tien.xuan.vo" Date: Sat, 11 May 2019 16:50:47 +0700 Subject: [PATCH] Fix wrong property --- src/Subject/AbstractSubject.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Subject/AbstractSubject.php b/src/Subject/AbstractSubject.php index 4c762707..55fee0dd 100644 --- a/src/Subject/AbstractSubject.php +++ b/src/Subject/AbstractSubject.php @@ -63,7 +63,7 @@ public function isTestingModel() */ public function setTestingSubject(bool $testingSubject = false) { - $this->testingModel = $testingSubject; + $this->testingSubject = $testingSubject; } /**