Skip to content

Commit

Permalink
fix: getServiceStub method return contract string
Browse files Browse the repository at this point in the history
  • Loading branch information
Mingeun Kim committed May 30, 2021
1 parent 3112344 commit 5202ca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MakeService.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected function getStub()
protected function getServiceStub(bool $isContract): string
{
return self::STUB_PATH.
($isContract ? 'service.origin.stub' : 'service.stub');
($isContract ? 'service.stub' : 'service.origin.stub');
}

/**
Expand Down

0 comments on commit 5202ca9

Please sign in to comment.