CS fixes
[phorkie.git] / src / phorkie / SetupCheck.php
index 95fd75993d2c3b88076573e75059915da39cd2c3..8c09519f8cf6fee0c9d4081a936ecde9d348c076 100644 (file)
@@ -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();