Skip to content

Commit

Permalink
voidのメソッドでリターンしているコードを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
takeuji committed Aug 29, 2022
1 parent 16561c7 commit 136ce2c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Eccube/Service/Composer/ComposerProcessService.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,11 @@ public function execConfig($key, $value = null)

public function configureRepository(BaseInfo $BaseInfo)
{
return $this->composerApiService->configureRepository($BaseInfo);
composerApiService->configureRepository($BaseInfo);
}

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);
}
}
2 changes: 1 addition & 1 deletion tests/Eccube/Tests/Service/PluginServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function deleteFile($path)
{
$f = new Filesystem();

return $f->remove($path);
$f->remove($path);
}

// 必要最小限のファイルのプラグインのインストールとアンインストールを検証
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public function deleteFile($path)
{
$f = new Filesystem();

return $f->remove($path);
$f->remove($path);
}

/**
Expand Down

0 comments on commit 136ce2c

Please sign in to comment.