@@ -4,5 +4,5 @@ |
||
| 4 | 4 | |
| 5 | 5 | interface ParsingEngine |
| 6 | 6 | { |
| 7 | - public function parse($context); |
|
| 7 | + public function parse ($context); |
|
| 8 | 8 | } |
| 9 | 9 | \ No newline at end of file |
@@ -9,7 +9,7 @@ |
||
| 9 | 9 | |
| 10 | 10 | class PlainTextEngine implements ParsingEngine |
| 11 | 11 | { |
| 12 | - public function parse($context) |
|
| 12 | + public function parse ($context) |
|
| 13 | 13 | { |
| 14 | 14 | return $context; |
| 15 | 15 | } |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | $this->bodyContentEvaluated = true; |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | - return (string)$this->bodyContent; |
|
| 61 | + return (string) $this->bodyContent; |
|
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | /** |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | /** |
| 104 | 104 | * @return PageView |
| 105 | 105 | */ |
| 106 | - public function &getPageView () |
|
| 106 | + public function &getPageView() |
|
| 107 | 107 | { |
| 108 | 108 | return $this->parentPageView; |
| 109 | 109 | } |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | /** |
| 127 | 127 | * {@inheritdoc} |
| 128 | 128 | */ |
| 129 | - public function jsonSerialize() |
|
| 129 | + public function jsonSerialize () |
|
| 130 | 130 | { |
| 131 | 131 | return array_merge($this->getFrontMatter(), array( |
| 132 | 132 | 'content' => $this->getContent(), |