aboutsummaryrefslogtreecommitdiff
path: root/src/bdrem/Config.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2014-02-21 06:33:36 +0100
committerChristian Weiske <cweiske@cweiske.de>2014-02-21 06:33:36 +0100
commit2e18a05a2cedf343b0d0f5fd3e4e6a8d65e2647e (patch)
tree8b61dc2db3bc601d126f53327afc8e0d2c89ec0f /src/bdrem/Config.php
parent58718ac761b64c5d093a135d6735300835f5d47c (diff)
downloadbdrem-2e18a05a2cedf343b0d0f5fd3e4e6a8d65e2647e.tar.gz
bdrem-2e18a05a2cedf343b0d0f5fd3e4e6a8d65e2647e.zip
Show help even when config file does not exist
Diffstat (limited to 'src/bdrem/Config.php')
-rw-r--r--src/bdrem/Config.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/bdrem/Config.php b/src/bdrem/Config.php
index 37c4c64..65e353d 100644
--- a/src/bdrem/Config.php
+++ b/src/bdrem/Config.php
@@ -5,19 +5,21 @@ class Config
{
public $source;
public $date;
- public $daysPrev;
- public $daysNext;
+ public $daysPrev = 3;
+ public $daysNext = 7;
public $locale;
- public $stopOnEmpty;
+ public $stopOnEmpty = false;
+ public $cfgFileExists;
public function load()
{
$f = __DIR__ . '/../../data/bdrem.config.php';
if (file_exists($f)) {
+ $this->cfgFileExists = true;
return $this->loadFile($f);
}
- throw new \Exception('No config file found');
+ $this->cfgFileExists = false;
}
protected function loadFile($filename)