kenjis
kenjis
https://github.com/codeigniter4/shield/search?q=config%28%27Auth%27%29&type=code Do these need to be replaced with `setting()`? I'm not sure when to use `config()` and when to use `setting()`.
The following is a list of the current implementation for Session Authenticator. Are these okay? - default login - Post email/password - OK → event `login` / table `auth_logins` -...
See https://github.com/codeigniter4/CodeIgniter4/pull/6269 ```diff - 'invalidRoute' => '{0} route cannot be found while reverse-routing.', + 'invalidRoute' => 'The route for "{0}" cannot be found.', ``` This change will be included in...
The following language files contain untranslated items. Translations are welcome! Please read on the latest [Contributing guide][1] and how to run the specific locale tests in the [Test README][2], when...
Some ORMs exec queries to get table schema like below: ``` SHOW FULL COLUMNS FROM `post` ``` We should configure all ORMs not to exec the queries like this.
It should be removed.
When I run phpcbf, it replaces indentation tab with 3 spaces in array. command: ```sh-session $ vendor/bin/phpcbf --standard=./vendor/codeigniter4/codeigniter4-standard/CodeIgniter4 --encoding=utf-8 system/Language/en/RESTful.php ``` before: ```php return [ 'notImplemented' => '"{0}" action not...
```diff --- a/system/BaseModel.php +++ b/system/BaseModel.php @@ -299,7 +299,9 @@ abstract class BaseModel $this->tempUseSoftDeletes = $this->useSoftDeletes; $this->tempAllowCallbacks = $this->allowCallbacks; - /** @var Validation $validation */ + /** + * @var Validation...
**Description** To confirm the current behavior. **Checklist:** - [x] Securely signed commits - [] Component(s) with PHPDoc blocks, only if necessary or adds value - [] Unit testing, with >80%...
**Description** - fix ResponseInterface - fix MessageInterface - deprecate - CodeIgniter::$useSafeOutput - CodeIgniter::useSafeOutput() **Checklist:** - [x] Securely signed commits - [ ] Component(s) with PHPDoc blocks, only if necessary or...