@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | } |
| 53 | 53 | } elseif ($name === 'content') { |
| 54 | 54 | if ($this->dbHandle === null) { |
| 55 | - throw new \Exception('Document doesnt have a dbHandle handle. (path: ' . $this->path . ')'); |
|
| 55 | + throw new \Exception('Document doesnt have a dbHandle handle. (path: '.$this->path.')'); |
|
| 56 | 56 | } else { |
| 57 | 57 | if ($this->content === null) { |
| 58 | 58 | return $this->getContent(); |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | */ |
| 98 | 98 | public function __toString() |
| 99 | 99 | { |
| 100 | - return 'Document:' . $this->title; |
|
| 100 | + return 'Document:'.$this->title; |
|
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | |