File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env php
22<?php
33
4+ declare (strict_types=1 );
5+
46/**
57 * This file is part of CodeIgniter 4 framework.
68 *
Original file line number Diff line number Diff line change 1717$ e1 = new FrameworkException ('Hello. ' );
1818$ e2 = new ViewException ('Hi! ' );
1919$ e3 = new RuntimeException ('Thanks. ' );
20- $ e4 = new \ CodeIgniter \HTTP \Exceptions \HTTPException ('Nice ' );
20+ $ e4 = new CodeIgniter \HTTP \Exceptions \HTTPException ('Nice ' );
Original file line number Diff line number Diff line change 2020assertType ('list<CodeIgniter\Shield\Entities\User> ' , $ users ->find ([1 ]));
2121
2222// Model::find() does not fail if not `array|int|string|null` but defaults to get all
23- assertType ('list<CodeIgniter\Shield\Entities\User> ' , $ users ->find (new \ stdClass ()));
23+ assertType ('list<CodeIgniter\Shield\Entities\User> ' , $ users ->find (new stdClass ()));
You can’t perform that action at this time.
0 commit comments