From c8c5ae9df82e0ad5b402743122866a7e45517a2d Mon Sep 17 00:00:00 2001 From: Emanuil Rusev Date: Thu, 23 Jan 2014 22:34:02 +0200 Subject: [PATCH] control structures should use braces --- Parsedown.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Parsedown.php b/Parsedown.php index dda6bd6..2f9e0e5 100755 --- a/Parsedown.php +++ b/Parsedown.php @@ -22,7 +22,9 @@ class Parsedown static function instance($name = 'default') { if (isset(self::$instances[$name])) + { return self::$instances[$name]; + } $instance = new Parsedown();