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

Commit

Permalink
Merge pull request #32 from orchidsoftware/analysis-8jQm9G
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
tabuna authored Sep 28, 2018
2 parents 601b753 + df6e2aa commit 22f0b10
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/SocketCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class SocketCommand extends GeneratorCommand
*/
protected function getStub()
{
return __DIR__ . '/../stubs/listener.stub';
return __DIR__.'/../stubs/listener.stub';
}

/**
Expand Down
6 changes: 3 additions & 3 deletions src/SocketServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ class SocketServiceProvider extends ServiceProvider
public function boot()
{
$this->publishes([
dirname(__DIR__) . '/config/socket.php' => config_path('socket.php'),
dirname(__DIR__) . '/stubs/socket.php' => base_path('routes/socket.php'),
dirname(__DIR__).'/config/socket.php' => config_path('socket.php'),
dirname(__DIR__).'/stubs/socket.php' => base_path('routes/socket.php'),
]);
$this->mergeConfigFrom(
dirname(__DIR__) . '/config/socket.php', 'socket'
dirname(__DIR__).'/config/socket.php', 'socket'
);
}

Expand Down

0 comments on commit 22f0b10

Please sign in to comment.