151a94986291fc79a71aa54d86f60cfcd592be9b
[yaffs-website] / vendor / dflydev / dot-access-configuration / src / Dflydev / DotAccessConfiguration / ConfigurationFactoryInterface.php
1 <?php
2
3 /*
4  * This file is a part of dflydev/dot-access-configuration.
5  *
6  * (c) Dragonfly Development Inc.
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Dflydev\DotAccessConfiguration;
13
14 interface ConfigurationFactoryInterface
15 {
16     /**
17      * Create a Configuration
18      *
19      * @return ConfigurationInterface
20      */
21     public function create();
22 }