Skip to content

Request Service

Configuration

Changing the Request Service Provider

PROVIDER_REQUEST=\Zemit\Provider\Request\ServiceProvider

Request Service (request)

Request Service Provider

Request Service Provider (request): \Zemit\Provider\Request\ServiceProvider

<?php
// Retrieving the service from an Injectable
$request = $this->request;

// Retrieving the service from the DI
$request = $this->di->get('request');

// Retrieving the service from the getDI()
$request = $this->getDI()->get('request');

// Retrieving the service from anywhere
$request = Di::getDefault()->get('request');