Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny committed Aug 7, 2023
1 parent 98254e0 commit 2106d71
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -24,7 +24,7 @@ protected function setUp(): void
{
parent::setUp();

$this->spyPublisher = $this->makeSpyPublsiher();
$this->spyPublisher = $this->makeSpyPublisher();

$this->app->bind(Publisher::class, function () {
return $this->spyPublisher;
Expand Down
Expand Up @@ -22,7 +22,7 @@ protected function setUp(): void
{
parent::setUp();

$this->spyPublisher = $this->makeSpyPublsiher();
$this->spyPublisher = $this->makeSpyPublisher();

$this->app->bind(Publisher::class, function () {
return $this->spyPublisher;
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/Laravel/Traits/SpyPublisher.php
Expand Up @@ -9,7 +9,7 @@

trait SpyPublisher
{
protected function makeSpyPublsiher(): Publisher
protected function makeSpyPublisher(): Publisher
{
return new class() implements Publisher {
public $messages;
Expand Down

0 comments on commit 2106d71

Please sign in to comment.