Skip to content

Commit

Permalink
rename methods
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jun 9, 2022
1 parent 93ff645 commit 753e9fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Broadcasting/BroadcastManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public function routes(array $attributes = null)
* @param array|null $attributes
* @return void
*/
public function userAuthenticationRoutes(array $attributes = null)
public function userRoutes(array $attributes = null)
{
if ($this->app instanceof CachesRoutes && $this->app->routesAreCached()) {
return;
Expand All @@ -107,7 +107,7 @@ public function userAuthenticationRoutes(array $attributes = null)
* @param array|null $attributes
* @return void
*/
public function channelAuthorizationRoutes(array $attributes = null)
public function channelRoutes(array $attributes = null)
{
return $this->routes($attributes);
}
Expand Down

0 comments on commit 753e9fd

Please sign in to comment.