Skip to content

Commit

Permalink
docs: BaseController depends on RequestInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Oct 16, 2022
1 parent 1337d6f commit 5589339
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/Controllers/BaseController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
namespace App\Controllers;

use CodeIgniter\Controller;
use CodeIgniter\HTTP\CLIRequest;
use CodeIgniter\HTTP\IncomingRequest;
use CodeIgniter\HTTP\RequestInterface;
use CodeIgniter\HTTP\ResponseInterface;
use Psr\Log\LoggerInterface;
Expand All @@ -24,7 +22,7 @@ abstract class BaseController extends Controller
/**
* Instance of the main Request object.
*
* @var CLIRequest|IncomingRequest
* @var RequestInterface
*/
protected $request;

Expand Down

0 comments on commit 5589339

Please sign in to comment.