From 194d209344016a9ebf7bd9c9c9696db79fac5ba3 Mon Sep 17 00:00:00 2001 From: Jukka Svahn Date: Wed, 22 May 2013 13:06:22 +0300 Subject: [PATCH] Made init() method protected. --- src/Rah/Danpu/Export.php | 2 +- src/Rah/Danpu/Import.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Rah/Danpu/Export.php b/src/Rah/Danpu/Export.php index 12e5b9e..1e02a84 100644 --- a/src/Rah/Danpu/Export.php +++ b/src/Rah/Danpu/Export.php @@ -49,7 +49,7 @@ class Export extends Base * Dumps the database. */ - public function init() + protected function init() { $this->connect(); $this->tmpFile(); diff --git a/src/Rah/Danpu/Import.php b/src/Rah/Danpu/Import.php index c001642..361e9f1 100644 --- a/src/Rah/Danpu/Import.php +++ b/src/Rah/Danpu/Import.php @@ -49,7 +49,7 @@ class Import extends Base * Runs the dump file. */ - public function init() + protected function init() { $this->connect(); $this->tmpFile();