kenjis
|
2ec8ff5d9b
|
fix: bug where ExceptionHandler displays incorrect Exception classname
It showed the first Exception, but devs must catch the thrown Exception.
|
2023-11-21 12:14:38 +09:00 |
|
kenjis
|
7c0024a100
|
docs: add space after comma
|
2023-11-19 20:05:32 +09:00 |
|
kenjis
|
6c06f84663
|
Merge pull request #8114 from paulbalandan/phpstan-phpdocs
docs: Use native PHPDocs instead of `@phpstan-`
|
2023-10-30 10:54:08 +09:00 |
|
John Paul E. Balandan, CPA
|
339d5276ab
|
Use native PHPDocs instead of @phpstan-
|
2023-10-29 23:55:08 +08:00 |
|
John Paul E. Balandan, CPA
|
ca13b97df7
|
fix: add correct array signatures for Modules
|
2023-10-28 20:51:39 +08:00 |
|
kenjis
|
9dda86d0f3
|
style: fix sytle
For consistency.
|
2023-10-27 06:13:40 +09:00 |
|
kenjis
|
4a10c999be
|
fix: SHOW_DEBUG_BACKTRACE does not work in web
|
2023-10-27 06:13:40 +09:00 |
|
kenjis
|
1be8686535
|
docs: add comments
|
2023-10-27 06:13:40 +09:00 |
|
kenjis
|
1874e62fd1
|
fix: detailed error report is displayed in production environment
php > ini_set('display_errors', '0');
php > var_dump(ini_get('display_errors'));
string(1) "0"
php > ini_set('display_errors', 0);
php > var_dump(ini_get('display_errors'));
string(1) "0"
php > ini_set('display_errors', false);
php > var_dump(ini_get('display_errors'));
string(0) ""
php > ini_set('display_errors', null);
php > var_dump(ini_get('display_errors'));
string(0) ""
php > ini_set('display_errors', 'off');
php > var_dump(ini_get('display_errors'));
string(3) "off"
|
2023-10-27 06:13:39 +09:00 |
|
kenjis
|
8513503c38
|
docs: fix @var type
|
2023-10-18 15:09:11 +09:00 |
|
kenjis
|
1ff3e6e3ac
|
Merge pull request #7894 from kenjis/fix-migration-db-group
fix: `spark migrate` `-g` option
|
2023-09-09 21:06:25 +09:00 |
|
John Paul E. Balandan, CPA
|
ea425e2986
|
fix: add types to View $filters and $plugins
|
2023-09-05 15:52:21 +08:00 |
|
kenjis
|
6d94e2ec14
|
docs: fix out-of-dated explanation
|
2023-09-05 10:23:18 +09:00 |
|
kenjis
|
c5fee4389c
|
docs: fix doc comments
|
2023-08-30 18:30:33 +09:00 |
|
kenjis
|
b9efbfc9d5
|
docs: add @immutable
There is no reason to change the values after the instantiation.
|
2023-08-27 15:38:42 +09:00 |
|
kenjis
|
75d8b56ede
|
Merge remote-tracking branch 'upstream/develop' into 4.4
|
2023-07-28 11:22:23 +09:00 |
|
John Paul E. Balandan, CPA
|
621edbeb6c
|
Merge pull request #7740 from paulbalandan/unicode-apostrophe
docs: replace `U+2019` with `U+0060`
|
2023-07-27 17:05:13 +08:00 |
|
John Paul E. Balandan, CPA
|
f09575c71b
|
Merge pull request #7741 from paulbalandan/app-types
Add types for app
|
2023-07-27 17:05:00 +08:00 |
|
John Paul E. Balandan, CPA
|
daf48bbfd5
|
Add types for app
|
2023-07-27 12:02:08 +08:00 |
|
John Paul E. Balandan, CPA
|
1890d05b99
|
docs: replace U+2019 with U+0060
|
2023-07-27 11:30:45 +08:00 |
|
John Paul E. Balandan, CPA
|
9f8bc2fedd
|
style: Use all available checked tokens for no_extra_blank_lines
|
2023-07-27 11:27:00 +08:00 |
|
kenjis
|
f3bcbfba23
|
refactor: add property types
|
2023-07-21 12:11:12 +09:00 |
|
kenjis
|
93398b434e
|
Merge remote-tracking branch 'upstream/develop' into 4.4
Conflicts:
phpstan-baseline.neon.dist
tests/system/Router/RouteCollectionReverseRouteTest.php
|
2023-07-21 09:49:18 +09:00 |
|
John Paul E. Balandan, CPA
|
9810c1fe9e
|
Fix PHPDoc of Config\Cache::$validHandlers
|
2023-07-20 15:30:39 +08:00 |
|
kenjis
|
50c225c54b
|
Merge remote-tracking branch 'upstream/develop' into 4.4
Conflicts:
phpstan-baseline.neon.dist
|
2023-07-16 15:00:59 +09:00 |
|
kenjis
|
a2fed68494
|
docs: replace Note: with NOTE:
For concisytency.
|
2023-07-13 16:21:35 +09:00 |
|
kenjis
|
254435e8eb
|
docs: add notes
|
2023-07-13 16:14:59 +09:00 |
|
kenjis
|
46a2703e61
|
refactor: use new Paths() instead of config()
`new Paths()` is faster than config(), and Paths is immutable.
|
2023-07-13 16:03:34 +09:00 |
|
kenjis
|
6c09f352c6
|
Merge remote-tracking branch 'upstream/develop' into 4.4
|
2023-07-04 08:07:47 +09:00 |
|
kenjis
|
4823409a4b
|
docs: update comment
|
2023-06-30 09:57:58 +09:00 |
|
kenjis
|
d9c7f06e96
|
Merge pull request #7630 from kenjis/remove-config-app-CSRF-items-4.4
Remove Config\App Security items
|
2023-06-30 08:09:45 +09:00 |
|
kenjis
|
6c3b6c4f18
|
config: change the default value of $shareOptions to false
|
2023-06-29 12:02:46 +09:00 |
|
kenjis
|
afeb419d06
|
refactor: remove CSRF config items in Config\App
|
2023-06-29 08:02:12 +09:00 |
|
kenjis
|
10d3be685a
|
Merge remote-tracking branch 'upstream/develop' into 4.4
|
2023-06-29 07:57:10 +09:00 |
|
kenjis
|
5fc525d94f
|
docs: fix comment header
|
2023-06-28 11:14:24 +09:00 |
|
Lonnie Ezell
|
2b52354fa9
|
fix: additional code style fix
|
2023-06-24 23:53:56 -05:00 |
|
Lonnie Ezell
|
c6b6341207
|
fix: attempting to fix style, user guide, and other small errors
|
2023-06-24 23:53:56 -05:00 |
|
Lonnie Ezell
|
aba163e52b
|
feat: Hot Reloading
|
2023-06-24 23:53:56 -05:00 |
|
kenjis
|
49be3f1d23
|
fix: remove Session config items in Config\App
|
2023-06-17 10:10:12 +09:00 |
|
kenjis
|
3ffee44dab
|
Merge remote-tracking branch 'origin/develop' into 4.4
|
2023-05-21 22:46:31 +09:00 |
|
John Paul E. Balandan, CPA
|
4f8c46be28
|
Standardize cell behavior
|
2023-05-18 16:50:33 +08:00 |
|
kenjis
|
dc0f85f55b
|
Merge remote-tracking branch 'upstream/develop' into 4.4
Conflicts:
user_guide_src/source/changelogs/index.rst
user_guide_src/source/installation/upgrading.rst
|
2023-05-04 09:20:12 +09:00 |
|
kenjis
|
8ac0d333b8
|
docs: add comment
|
2023-04-29 11:23:53 +09:00 |
|
kenjis
|
51d9e40cc7
|
Merge remote-tracking branch 'origin/develop' into 4.4
|
2023-04-27 21:42:16 +09:00 |
|
kenjis
|
c237cd8c72
|
fix: add missing 'make:cell'
|
2023-04-27 17:20:36 +09:00 |
|
kenjis
|
d02735ea6c
|
feat: module routing for Auto Routing Improved
|
2023-04-10 10:02:48 +09:00 |
|
kenjis
|
4676c0aa9c
|
Merge pull request #7380 from codeigniter4/clean-router-config
Clean router config
|
2023-04-10 10:00:48 +09:00 |
|
kenjis
|
3e1d653b20
|
feat: add Debug\ExceptionHandler
|
2023-04-08 11:03:38 +09:00 |
|
Lonnie Ezell
|
b2ae0cc4e6
|
Code quality improvements
|
2023-04-07 09:35:29 +09:00 |
|
Lonnie Ezell
|
0604b40afa
|
Move routes files back to Config folder for now, and drop the modulesPath config setting.
|
2023-04-07 09:35:28 +09:00 |
|