Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
joedixon committed Nov 6, 2023
1 parent 28aa4f9 commit e7a2517
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/ConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function all(): Collection
}

/**
* Find an application instance by ID.
* Find an application instance by key.
*
* @throws \Laravel\Reverb\Exceptions\InvalidApplication
*/
Expand All @@ -35,7 +35,7 @@ public function findByKey(string $key): Application
}

/**
* Find an application instance by key.
* Find an application instance by ID.
*
* @throws \Laravel\Reverb\Exceptions\InvalidApplication
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Contracts/ApplicationProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ interface ApplicationProvider
public function all(): Collection;

/**
* Find an application instance by ID.
* Find an application instance by key.
*
* @throws \Laravel\Reverb\Exceptions\InvalidApplication
*/
public function findByKey(string $key): Application;

/**
* Find an application instance by key.
* Find an application instance by ID.
*
* @throws \Laravel\Reverb\Exceptions\InvalidApplication
*/
Expand Down

0 comments on commit e7a2517

Please sign in to comment.