25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
257B

  1. <?php
  2. namespace Framework\Provider;
  3. use Framework\App;
  4. use Framework\Support\Config;
  5. class ConfigProvider
  6. {
  7. public function bind(App $app): void
  8. {
  9. $app->bind('config', function($app) {
  10. return new Config();
  11. });
  12. }
  13. }

Powered by TurnKey Linux.