diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2012-09-27 20:31:13 +0200 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2012-09-27 20:31:13 +0200 |
| commit | 71c2c412f7098050479f496292bc694095d9ec97 (patch) | |
| tree | 6b935073599cfaff7155156957dcf56b9f14d804 /src/phorkie/SetupCheck.php | |
| parent | 54fca64ff16d95d03588217dfaa21f4729c2f930 (diff) | |
| download | phorkie-71c2c412f7098050479f496292bc694095d9ec97.tar.gz phorkie-71c2c412f7098050479f496292bc694095d9ec97.zip | |
CS fixes
Diffstat (limited to 'src/phorkie/SetupCheck.php')
| -rw-r--r-- | src/phorkie/SetupCheck.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/phorkie/SetupCheck.php b/src/phorkie/SetupCheck.php index 95fd759..8c09519 100644 --- a/src/phorkie/SetupCheck.php +++ b/src/phorkie/SetupCheck.php @@ -80,8 +80,11 @@ class SetupCheck $es = parse_url($this->elasticsearch); if (!preg_match("#/.+/#", $es['path'], $matches)) { - $this->fail('Improper elasticsearch url. Elasticsearch requires a' - . ' search domain to store your data. (e.g. http://localhost:9200/phorkie/)'); + $this->fail( + 'Improper elasticsearch url. Elasticsearch requires a' + . ' search domain to store your data.' + . ' (e.g. http://localhost:9200/phorkie/)' + ); } $dbs = new Database(); $dbs->getSetup()->setup(); |
