Skip to content

Commit

Permalink
Update changelog (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
marmichalski authored May 1, 2020
1 parent d50c2a2 commit 7a48c4d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* **Fixed** for any bug fixes.
* **Security** in case of vulnerabilities.

## [0.7.2] 2020-05-01
* Replace YiiDynamicStaticMethodReturnTypeExtension with a stub

## [0.7.1] 2019-12-16
### Removed
* 'Call to an undefined method yii\console\Response' ignored error
Expand Down
2 changes: 2 additions & 0 deletions tests/Yii/MyController.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ public function actionMy(): void

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

$objectClass = \SplObjectStorage::class;
\Yii::createObject($objectClass)->count();
\Yii::createObject(\SplObjectStorage::class)->count();
\Yii::createObject('SplObjectStorage')->count();
\Yii::createObject(['class' => '\SplObjectStorage'])->count();
Expand Down

0 comments on commit 7a48c4d

Please sign in to comment.