diff --git a/src/Illuminate/Broadcasting/BroadcastManager.php b/src/Illuminate/Broadcasting/BroadcastManager.php index 22922a3197f2..bec197e83ffe 100644 --- a/src/Illuminate/Broadcasting/BroadcastManager.php +++ b/src/Illuminate/Broadcasting/BroadcastManager.php @@ -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; @@ -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); }