-
Notifications
You must be signed in to change notification settings - Fork 661
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
voidのメソッドでリターンしているコードを修正 #5692
voidのメソッドでリターンしているコードを修正 #5692
Conversation
@@ -141,11 +141,11 @@ public function execConfig($key, $value = null) | |||
|
|||
public function configureRepository(BaseInfo $BaseInfo) | |||
{ | |||
return $this->composerApiService->configureRepository($BaseInfo); | |||
composerApiService->configureRepository($BaseInfo); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@takeuji
ここでSyntax errorが発生してました。
$this->
が抜けてるようです。
} | ||
|
||
public function foreachRequires($packageName, $version, $callback, $typeFilter = null, $level = 0) | ||
{ | ||
return $this->composerApiService->foreachRequires($packageName, $version, $callback, $typeFilter, $level); | ||
composerApiService->foreachRequires($packageName, $version, $callback, $typeFilter, $level); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
同上
@chihiro-adachi |
Codecov Report
@@ Coverage Diff @@
## 4.2 #5692 +/- ##
============================================
+ Coverage 78.82% 78.84% +0.01%
- Complexity 6260 6273 +13
============================================
Files 469 469
Lines 21010 21058 +48
============================================
+ Hits 16561 16603 +42
- Misses 4449 4455 +6
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
概要(Overview・Refs Issue)
voidのメソッドでリターンしているコードを修正しました
ちょうど、#5578で修正済みのものもありました
方針(Policy)
実装に関する補足(Appendix)
テスト(Test)
相談(Discussion)
マイナーバージョン互換性保持のための制限事項チェックリスト
レビュワー確認項目