aboutsummaryrefslogtreecommitdiff
path: root/app/class/Flywheel/Formatter/JSON.php
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2020-04-17 20:58:27 +0200
committervincent-peugnet <v.peugnet@free.fr>2020-04-17 20:58:27 +0200
commit1c4182d9d88bb4471f86b08329f1b68a5290872b (patch)
treee7ccae68902113ece94ab4c8e86fd712dc028d2a /app/class/Flywheel/Formatter/JSON.php
parentdc5613c15b1b414fefadd66912ebf8ff3a5eef9d (diff)
downloadwcms-1c4182d9d88bb4471f86b08329f1b68a5290872b.tar.gz
wcms-1c4182d9d88bb4471f86b08329f1b68a5290872b.zip
apply psr 12 part 2
Diffstat (limited to 'app/class/Flywheel/Formatter/JSON.php')
-rw-r--r--app/class/Flywheel/Formatter/JSON.php3
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
+}