Version 1
[yaffs-website] / vendor / dflydev / dot-access-configuration / src / Dflydev / DotAccessConfiguration / Configuration.php
diff --git a/vendor/dflydev/dot-access-configuration/src/Dflydev/DotAccessConfiguration/Configuration.php b/vendor/dflydev/dot-access-configuration/src/Dflydev/DotAccessConfiguration/Configuration.php
new file mode 100644 (file)
index 0000000..5b590d7
--- /dev/null
@@ -0,0 +1,25 @@
+<?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 Configuration extends AbstractConfiguration
+{
+    /**
+     * Constructor
+     *
+     * @param array|null $config
+     */
+    public function __construct(array $config = null)
+    {
+        $this->importRaw($config);
+    }
+}