601 Commits

Author SHA1 Message Date
John Paul E. Balandan, CPA
ca13b97df7
fix: add correct array signatures for Modules 2023-10-28 20:51:39 +08:00
kenjis
7f556d57a7
Merge remote-tracking branch 'origin/develop' into 4.5 2023-10-27 07:48:58 +09: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
0093e684e0
Merge remote-tracking branch 'upstream/develop' into 4.5
Conflicts:
	user_guide_src/source/changelogs/index.rst
	user_guide_src/source/installation/upgrading.rst
2023-10-22 12:53:10 +09:00
kenjis
8513503c38
docs: fix @var type 2023-10-18 15:09:11 +09:00
kenjis
6d97128679
Merge pull request #8008 from kenjis/add-memory-usage-in-welcome
feat: add `{memory_usage}` replacement
2023-10-12 11:00:04 +09:00
kenjis
b4a1e524cd
feat: show memory usage in Welcome page 2023-10-11 13:06:43 +09:00
kenjis
a8f589dbd3
Merge pull request #8003 from kenjis/fix-Config-Kint
fix: error on `Config\Kint` with Config Caching
2023-10-11 13:03:54 +09:00
kenjis
5aecfd1a80
docs: update comments in Config/Autoload.php 2023-10-05 08:33:34 +09:00
kenjis
ed25c835e1
config: move Config namespace to AutoloadConfig
We can't customize `Config` namespace name.
2023-10-04 20:03:10 +09:00
kenjis
c18a661880
fix: Config\Kint does not extend BaseConfig
We do not need to share the Config file, and if we enable Config Caching,
it cannot be loaded from FactoriesCache when we run `composer install --no-dev`.
Because the autoloader for Kint is initialized in CodeIgniter::initialize().
2023-10-04 17:24:29 +09:00
kenjis
b2998ba0df
feat: add feature flag for filter execution order 2023-10-03 14:40:28 +09:00
kenjis
756d143156
refactor: remove Config\Feature::$multipleFilters
$multipleFilters is always enabled, and cannot be disabled.
2023-09-13 14:45:31 +09:00
kenjis
d2425b2e4f
config: change default charset/DBCollat for SQLite3
Both are not used at the moment, though.
2023-09-12 06:41:40 +09:00
kenjis
8aedb6f69c
config: change default db charset to utf8mb4 2023-09-11 12:04:07 +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