Skip to content
This repository has been archived by the owner on Oct 23, 2019. It is now read-only.

Commit

Permalink
laravel 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Aug 24, 2016
1 parent 08bb087 commit b514209
Show file tree
Hide file tree
Showing 12 changed files with 2 additions and 2 deletions.
Empty file removed Providers/.gitkeep
Empty file.
Empty file removed Tests/.gitkeep
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Console/Server.php → src/Console/Server.php
Expand Up @@ -60,7 +60,7 @@ public function __construct()
public function fire()
{
$socket = new Socket($this->httpHost, $this->port, $this->address);
require_once app_path() . '/Http/Socket/routes.php';
require base_path('routes/socket.php');
$this->info('Laravel web socket server started on ' . $this->httpHost . ':' . $this->port . '/' . 'address:' . $this->address);
$socket->run();
}
Expand Down
File renamed without changes.
Expand Up @@ -33,7 +33,7 @@ protected function registerConfig()
{
$this->publishes([
__DIR__ . '/../Config/socket.php' => config_path('socket.php'),
__DIR__ . '/../routes.php' => app_path('/Http/Socket/routes.php'),
__DIR__ . '/../socket.php' => app_path('routes/socket.php'),
]);
$this->mergeConfigFrom(
__DIR__ . '/../Config/socket.php', 'socket'
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit b514209

Please sign in to comment.