From 97a6fb3b60c07a150f534bf89e5d8e4ac32c25c5 Mon Sep 17 00:00:00 2001 From: Vadim Belorussov Date: Tue, 19 Aug 2014 20:01:08 +0500 Subject: [PATCH] Fixes indents --- framework/test/BaseActiveFixture.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/framework/test/BaseActiveFixture.php b/framework/test/BaseActiveFixture.php index 7678e60..85b8f79 100644 --- a/framework/test/BaseActiveFixture.php +++ b/framework/test/BaseActiveFixture.php @@ -105,11 +105,11 @@ abstract class BaseActiveFixture extends DbFixture implements \IteratorAggregate throw new InvalidConfigException("Fixture data file does not exist: {$this->dataFile}"); } } - - public function unload() + + public function unload() { parent::unload(); - $this->data = []; + $this->data = []; $this->_models = []; } }