diff options
Diffstat (limited to 'app/class/Flywheel/Formatter')
-rw-r--r-- | app/class/Flywheel/Formatter/JSON.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/class/Flywheel/Formatter/JSON.php b/app/class/Flywheel/Formatter/JSON.php index 9659fcb..d55c3b6 100644 --- a/app/class/Flywheel/Formatter/JSON.php +++ b/app/class/Flywheel/Formatter/JSON.php @@ -1,4 +1,5 @@ <?php + namespace Wcms\Flywheel\Formatter; class JSON implements \JamesMoss\Flywheel\Formatter\FormatInterface @@ -18,4 +19,4 @@ class JSON implements \JamesMoss\Flywheel\Formatter\FormatInterface $options = defined('JSON_OBJECT_AS_ARRAY') ? JSON_OBJECT_AS_ARRAY : null; return json_decode($data, $options); } -}
\ No newline at end of file +} |