Version 1
[yaffs-website] / vendor / dflydev / dot-access-configuration / src / Dflydev / DotAccessConfiguration / ConfigurationFactory.php
diff --git a/vendor/dflydev/dot-access-configuration/src/Dflydev/DotAccessConfiguration/ConfigurationFactory.php b/vendor/dflydev/dot-access-configuration/src/Dflydev/DotAccessConfiguration/ConfigurationFactory.php
new file mode 100644 (file)
index 0000000..1ab61f2
--- /dev/null
@@ -0,0 +1,23 @@
+<?php
+
+/*
+ * This file is a part of dflydev/dot-access-configuration.
+ *
+ * (c) Dragonfly Development Inc.
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Dflydev\DotAccessConfiguration;
+
+class ConfigurationFactory implements ConfigurationFactoryInterface
+{
+    /**
+     * {@inheritdocs}
+     */
+    public function create()
+    {
+        return new Configuration;
+    }
+}