Skip to content

Commit 7a48c4d

Browse files
authored
Update changelog (#29)
1 parent d50c2a2 commit 7a48c4d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1212
* **Fixed** for any bug fixes.
1313
* **Security** in case of vulnerabilities.
1414

15+
## [0.7.2] 2020-05-01
16+
* Replace YiiDynamicStaticMethodReturnTypeExtension with a stub
17+
1518
## [0.7.1] 2019-12-16
1619
### Removed
1720
* 'Call to an undefined method yii\console\Response' ignored error

tests/Yii/MyController.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ public function actionMy(): void
4343

4444
$flag = \Yii::$app->customComponent->flag;
4545

46+
$objectClass = \SplObjectStorage::class;
47+
\Yii::createObject($objectClass)->count();
4648
\Yii::createObject(\SplObjectStorage::class)->count();
4749
\Yii::createObject('SplObjectStorage')->count();
4850
\Yii::createObject(['class' => '\SplObjectStorage'])->count();

0 commit comments

Comments
 (0)