@@ -522,7 +522,9 @@ discard block |
||
| 522 | 522 | */ |
| 523 | 523 | final public function deleteFrontMatter ($key) |
| 524 | 524 | { |
| 525 | - if (!isset($this->writableFrontMatter[$key])) { return; } |
|
| 525 | + if (!isset($this->writableFrontMatter[$key])) |
|
| 526 | + { |
|
| 527 | +return; } |
|
| 526 | 528 | |
| 527 | 529 | unset($this->writableFrontMatter[$key]); |
| 528 | 530 | } |
@@ -593,7 +595,9 @@ discard block |
||
| 593 | 595 | public function offsetExists ($offset) |
| 594 | 596 | { |
| 595 | 597 | if ($this->isMagicGet($offset)) |
| 596 | - return true; |
|
| 598 | + { |
|
| 599 | + return true; |
|
| 600 | + } |
|
| 597 | 601 | |
| 598 | 602 | $fxnCall = 'get' . ucfirst($offset); |
| 599 | 603 | return method_exists($this, $fxnCall) && in_array($fxnCall, static::$whiteListFunctions); |