$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
로그인 후 복사
Instantiation Kernel
애플리케이션이 인스턴스화되면 많은 기본 작업이 초기화되므로 다음 구성 방법에서는 서비스 컨테이너의 종속성 주입을 직접 사용하여 클래스 간의 종속성 문제를 해결합니다. .
// \Illuminate\Contracts\Http\Kernel 类构造器依赖 \Illuminate\Contracts\Foundation\Application 和 \Illuminate\Routing\Router,将会通过服务容器来处理依赖关系 public function __construct(Application $app, Router $router) { $this->app = $app; // 主要委托 $router 来处理 $this->router = $router; // 以下均为中间件的设置 $router->middlewarePriority = $this->middlewarePriority; foreach ($this->middlewareGroups as $key => $middleware) { $router->middlewareGroup($key, $middleware); } foreach ($this->routeMiddleware as $key => $middleware) { $router->aliasMiddleware($key, $middleware); } } \Illuminate\Contracts\Foundation\Application 的处理: make 时通过别名方式直接调用 $this->instances['app'] \Illuminate\Routing\Router 的处理: make 时通过别名方式直接调用 $this->bindings['router'] 数组里面 concrete 对应的匿名函数 Router 依赖 \Illuminate\Contracts\Events\Dispatcher 和 \Illuminate\Container\Container public function __construct(Dispatcher $events, Container $container = null) { $this->events = $events; $this->routes = new RouteCollection; $this->container = $container ?: new Container; } \Illuminate\Contracts\Events\Dispatcher 的处理: make 时通过别名方式直接调用 $this->bindings['events'] 数组里面 concrete 对应的匿名函数 Dispatcher 依赖 \Illuminate\Contracts\Container\Container public function __construct(ContainerContract $container = null) { $this->container = $container ?: new Container; } \Illuminate\Container\Container 的处理: make 时直接调用 $this->instances['Illuminate\Container\Container'] = Object(app) \Illuminate\Contracts\Container\Container 的处理: make 时调用别名直接调用 $this->instances['app'] = Object(app) 上面两个一样,没有区别
로그인 후 복사
참고: 위에 나열된 종속성은 모두 자동 처리를 위해 서비스 컨테이너에 직접 위임됩니다. $this->bindings['router'] 및 $this-> 바인딩['이벤트']는 바인딩 이벤트를 처리합니다. 배열 키 콘크리트에 해당하는 익명 함수는 make 중에 직접 호출됩니다.
make############################################## if ($concrete instanceof Closure) { return $concrete($this, end($this->with)); } ############################################### $this->bindings['router'] = [ 'concrete' => function ($app) { return new Router($app['events'], $app); }, 'shared' => 'true', ]; $router = new Router($app['events'], $app); \Illuminate\Routing\Router public function __construct(Dispatcher $events, Container $container = null) { $this->events = $events; $this->routes = new RouteCollection; $this->container = $container ?: new Container; }
로그인 후 복사
$this->bindings['events'] = [ 'concrete' => function ($app) { return (new Dispatcher($app))->setQueueResolver(function () use ($app) { return $app->make(QueueFactoryContract::class); }); } 'shared' => 'true', ]; $dispatcher = (new \Illuminate\Events\Dispatcher($app))->setQueueResolver(function () use ($app) { return $app->make(QueueFactoryContract::class); }); Illuminate\Events\Dispatcher: public function __construct(ContainerContract $container = null) { $this->container = $container ?: new Container; } public function setQueueResolver(callable $resolver) { $this->queueResolver = $resolver; return $this; }
로그인 후 복사
커널 객체는 애플리케이션과 라우팅을 결합한 객체이며, 라우팅은 핵심 객체인 IlluminateEventsDispatcher 객체를 주입합니다.