@@ -81,7 +81,7 @@ |
||
| 81 | 81 | throw new \BadMethodCallException(); |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - public function __get($name) |
|
| 84 | + public function __get ($name) |
|
| 85 | 85 | { |
| 86 | 86 | if ($this->object->isMagicGet($name)) |
| 87 | 87 | { |
@@ -88,6 +88,6 @@ |
||
| 88 | 88 | return $this->object->$name; |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - return NULL; |
|
| 91 | + return null; |
|
| 92 | 92 | } |
| 93 | 93 | } |
| 94 | 94 | \ No newline at end of file |
@@ -84,13 +84,13 @@ discard block |
||
| 84 | 84 | $this->bodyContentEvaluated = true; |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - return (string)$this->bodyContent; |
|
| 87 | + return (string) $this->bodyContent; |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | /** |
| 91 | 91 | * @return PageView |
| 92 | 92 | */ |
| 93 | - public function &getPageView () |
|
| 93 | + public function &getPageView() |
|
| 94 | 94 | { |
| 95 | 95 | return $this->parentPageView; |
| 96 | 96 | } |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | /** |
| 114 | 114 | * {@inheritdoc} |
| 115 | 115 | */ |
| 116 | - public function jsonSerialize() |
|
| 116 | + public function jsonSerialize () |
|
| 117 | 117 | { |
| 118 | 118 | return array_merge($this->getFrontMatter(), array( |
| 119 | 119 | 'content' => $this->getContent() |