Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

provider.php 258B

12345678910111213
  1. <?php
  2. use app\ExceptionHandle;
  3. use app\Request;
  4. use app\Route;
  5. // 容器Provider定义文件
  6. return [
  7. 'think\Request' => Request::class,
  8. 'think\Route' => Route::class,
  9. 'think\exception\Handle' => ExceptionHandle::class,
  10. ];