Maksim Spirkov
9d10723978
Fix #20739 : Fix @var annotation for BaseYii::$app
2026-02-22 18:26:58 +03:00
Wilmer Arambula
f66d5c8864
Fixed error PHPCS lasted version in PHP 8.5. ( #20721 )
2026-01-27 05:53:03 -03:00
Maksim Spirkov
9a9a8b1e21
Use PHPStan/Psalm types in PHPDoc annotations ( #20717 )
2026-01-24 16:44:20 +03:00
Alexander Makarov
324859b594
prepare for next release
2026-01-10 01:24:25 +03:00
Alexander Makarov
1389aacf03
release version 2.0.54
2026-01-10 01:24:11 +03:00
Alexander Makarov
c32d24c929
Revert "release version 2.0.54"
...
This reverts commit 00363cbe6b .
2025-12-02 15:47:40 +03:00
Alexander Makarov
454874ed0e
Revert "prepare for next release"
...
This reverts commit c8712e9a94 .
2025-12-02 15:47:40 +03:00
Alexander Makarov
c8712e9a94
prepare for next release
2025-11-23 16:01:46 +03:00
Alexander Makarov
00363cbe6b
release version 2.0.54
2025-11-23 16:01:26 +03:00
Maksim Spirkov
fa9a2b6e6d
Fix #20639 : Add missing generics in yii\web namespace
2025-10-27 10:53:46 +03:00
Maksim Spirkov
122e95216f
Fix #20636 : Fix @param annotations for $message in logging methods
2025-10-25 22:12:38 +03:00
Maksim Spirkov
68600dbcba
Fix #20524 : Fix PHPStan/Psalm annotations in Yii::createObject
2025-09-15 20:37:32 +03:00
Maksim Spirkov
53256fdd24
Fix #20513 : Fix code examples in PHPDoc
2025-09-06 00:22:56 +03:00
Alexander Makarov
4ab002b59a
prepare for next release
2025-06-27 10:43:26 +03:00
Alexander Makarov
8a7f2effa3
release version 2.0.53
2025-06-27 10:42:53 +03:00
Максим Спирков
3b1e92008d
PHPStan/Psalm annotations for Yii::getAlias ( #20394 )
2025-06-03 19:58:35 +03:00
Максим Спирков
f66ee97a45
Fix #20374 : Add PHPStan/Psalm annotations for BaseYii, BaseObject, Component, Model, Module and yii\base\Controller
2025-05-05 08:24:57 +03:00
Alexander Makarov
8771c21c29
prepare for next release
2025-02-13 23:02:42 +03:00
Alexander Makarov
40b1ec3799
release version 2.0.52
2025-02-13 23:02:28 +03:00
Alexander Makarov
633998bc0d
prepare for next release
2024-07-18 22:50:14 +03:00
Alexander Makarov
9a98aff5fc
release version 2.0.51
2024-07-18 22:50:00 +03:00
Alexander Makarov
6b1591b222
prepare for next release
2024-05-30 20:23:51 +03:00
Alexander Makarov
52e4a3e645
release version 2.0.50
2024-05-30 20:23:31 +03:00
Razvan Grigore
e2a167028b
Upgrade to PSR12 coding standard ( #20121 )
2024-03-19 17:21:27 +03:00
Bizley
505fd5a2f8
prepare for next release
2023-10-12 17:46:49 +02:00
Bizley
4f1735995a
release version 2.0.49.2
2023-10-12 17:46:26 +02:00
Bizley
290e03cddc
prepare for next release
2023-10-05 18:12:47 +02:00
Bizley
4a1f2c6b9b
release version 2.0.49.1
2023-10-05 18:12:27 +02:00
Bizley
a2ee22044c
prepare for next release
2023-08-29 15:36:45 +02:00
Bizley
0f7248c7a2
release version 2.0.49
2023-08-29 15:36:17 +02:00
Mark Huot
e40fb70fa8
Remove unnecessary type ( #19932 )
...
Because Web and Console application extend Base application there is no need to specify it.
Actually, PHPStan narrows this to _just_ BaseApplication because it is the only consistent type of the three so you lose Web and Console Application type hints.
See, https://phpstan.org/r/d21fb99f-c436-480b-99c2-32df35ec07fa
2023-08-18 15:15:39 +04:00
Alexander Makarov
1332eb98db
prepare for next release
2023-05-24 23:04:21 +04:00
Alexander Makarov
c9f491b4f7
release version 2.0.48.1
2023-05-24 23:04:02 +04:00
Alexander Makarov
75ca241ac9
prepare for next release
2023-05-22 10:33:26 +04:00
Alexander Makarov
8228d81b25
release version 2.0.48
2023-05-22 10:32:53 +04:00
Alexander Makarov
aed647b78c
prepare for next release
2022-11-18 20:22:13 +04:00
Alexander Makarov
68b473679a
release version 2.0.47
2022-11-18 20:21:58 +04:00
Alexander Makarov
d8ad6fc0b6
prepare for next release
2022-08-19 01:19:54 +03:00
Alexander Makarov
22614a5b1f
release version 2.0.46
2022-08-19 01:18:45 +03:00
Bizley
161526cd41
HTTPS everywhere ( #19503 )
2022-08-03 12:32:18 +03:00
Kenjebaev Sag'indiq
4264082499
Update link in Yii::powered() ( #19376 )
2022-05-03 19:28:55 +03:00
Brandon Kelly
a87c02c712
Fix more types ( #19333 )
...
* Migration::upsert() returns void
* Unneeded `@property` tags
* Add missing `null` param/return types
* Null types for db\Query + db\ActiveQuery
* Fixed testSelect
* Null types for Validator
* Several more null types
* One more
* Make AccessRule::$allow always a boolean
It doesn't have any special null handling, so it's safe to default to false
* Validator::$skipOnEmpty is always a boolean
* Catch all throwable from Widget::widget()
* Don't limit $previous args to \Exception
The actual \Exception allows $previous to be any throwable in PHP 7+
* Add Throwable catch block to Instance::get()
* Throwable cleanup
Comment changes only.
- Document \Throwable instead of \Exception wherever appropriate
- Removed redundant exception/error classes when \Throwable is referenced
* Yii::setlogger() accepts null
* ArrayHelper::removeValue() can remove any type of value
* Change default $allow value to false
2022-04-03 11:20:21 +02:00
Brandon Kelly
4628b91e73
Fix types ( #19332 )
...
* Migration::upsert() returns void
* Unneeded `@property` tags
* Add missing `null` param/return types
* Null types for db\Query + db\ActiveQuery
* Fixed testSelect
2022-03-30 18:40:10 +02:00
Alexander Makarov
200d8b87d5
prepare for next release
2022-02-11 16:13:11 +03:00
Alexander Makarov
0792736b35
release version 2.0.45
2022-02-11 16:12:40 +03:00
Alexander Makarov
1271bc419f
Fix #19041 : Fix PHP 8.1 issues
2022-01-14 13:52:01 +03:00
Alexander Makarov
d7aec6b8e7
prepare for next release
2021-12-30 10:51:17 +03:00
Alexander Makarov
655786b7ed
release version 2.0.44
2021-12-30 10:50:56 +03:00
Bizley
0041f034fd
[doc] Update PHP doc links ( #18957 )
...
* Replace https://secure.php.net with https://www.php.net
* Replace http://www.php.net with https://www.php.net
2021-10-19 14:50:26 +02:00
BIKI DAS
7cca296a5e
Framework(Baseyii.php) -----> fixed typos and improved doc ( #18927 )
...
* fixed typos and improved doc
* spacing fix
* The ---> the
* removed "are"
Co-authored-by: Bizley <pawel@positive.codes >
2021-10-03 19:33:30 +02:00