ConfigurationProviderInterface.php 485 B

12345678910111213141516171819202122
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4. * This file is part of the league/config package.
  5. *
  6. * (c) Colin O'Dell <colinodell@gmail.com>
  7. *
  8. * For the full copyright and license information, please view the LICENSE
  9. * file that was distributed with this source code.
  10. */
  11. namespace League\Config;
  12. /**
  13. * Interface for a service which provides a readable configuration object
  14. */
  15. interface ConfigurationProviderInterface
  16. {
  17. public function getConfiguration(): ConfigurationInterface;
  18. }