@@ -2,7 +2,7 @@ |
||
2 | 2 | |
3 | 3 | use EmberDb\DocumentManager; |
4 | 4 | |
5 | -require_once __DIR__ . '/../vendor/autoload.php'; |
|
5 | +require_once __DIR__.'/../vendor/autoload.php'; |
|
6 | 6 | |
7 | 7 | $car = array( |
8 | 8 | 'license-number' => 'HH-DS 1243', |
@@ -73,7 +73,7 @@ |
||
73 | 73 | $quit = true; |
74 | 74 | $output = "Closing EmberDb command line client.\n\n"; |
75 | 75 | } else { |
76 | - Logger::log("Starting execution of '" . $inputLine . "'.\n"); |
|
76 | + Logger::log("Starting execution of '".$inputLine."'.\n"); |
|
77 | 77 | $output = $this->parser->execute($inputLine); |
78 | 78 | Logger::log("Execution finished.\n\n"); |
79 | 79 | } |
@@ -75,18 +75,18 @@ |
||
75 | 75 | |
76 | 76 | // If both are a scalar ... |
77 | 77 | if ($this->isScalar($filterValue) && $this->isScalar($entryValue)) { |
78 | - Logger::log("query:" . $filterValue . " and entry:" . $entryValue . " are both scalars.\n"); |
|
78 | + Logger::log("query:".$filterValue." and entry:".$entryValue." are both scalars.\n"); |
|
79 | 79 | $isMatch = $filterValue === $entryValue; |
80 | 80 | } |
81 | 81 | // If both are a list ... |
82 | 82 | if ($this->isList($filterValue) && $this->isList($entryValue)) { |
83 | - Logger::log("query:" . json_encode($filterValue) . " and entry:" . json_encode($entryValue) . " are both lists.\n"); |
|
83 | + Logger::log("query:".json_encode($filterValue)." and entry:".json_encode($entryValue)." are both lists.\n"); |
|
84 | 84 | $isMatch = $filterValue === $entryValue; |
85 | 85 | } |
86 | 86 | |
87 | 87 | // If both are a document ... |
88 | 88 | if ($this->isDocument($filterValue) && $this->isDocument($entryValue)) { |
89 | - Logger::log("query:" . json_encode($filterValue) . " and entry:" . json_encode($entryValue) . " are both documents.\n"); |
|
89 | + Logger::log("query:".json_encode($filterValue)." and entry:".json_encode($entryValue)." are both documents.\n"); |
|
90 | 90 | |
91 | 91 | // If filter is an operator ... |
92 | 92 | if ($this->isOperator($filterValue)) { |
@@ -42,6 +42,6 @@ |
||
42 | 42 | { |
43 | 43 | $this->name = $name; |
44 | 44 | $this->path = $path; |
45 | - $this->metaData = new MetaData($path . '/' . $name . 'meta.edb'); |
|
45 | + $this->metaData = new MetaData($path.'/'.$name.'meta.edb'); |
|
46 | 46 | } |
47 | 47 | } |
48 | 48 | \ No newline at end of file |