Skip to content

Commit

Permalink
fix: styleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
akazorg committed Nov 12, 2018
1 parent d2ad86c commit 97fa7fe
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/Http/Controllers/ConversationsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace Launcher\Mercurius\Http\Controllers;

use Illuminate\Http\Request;
use Launcher\Mercurius\Facades\Mercurius;
use Launcher\Mercurius\Repositories\ConversationRepository;
use Launcher\Mercurius\Repositories\UserRepository;

Expand Down
1 change: 0 additions & 1 deletion src/Http/Controllers/ProfileController.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
use Launcher\Mercurius\Events\UserGoesActive;
use Launcher\Mercurius\Events\UserGoesInactive;
use Launcher\Mercurius\Events\UserStatusChanged;
use Launcher\Mercurius\Facades\Mercurius;
use Launcher\Mercurius\Repositories\ConversationRepository;
use Launcher\Mercurius\Repositories\UserRepository;

Expand Down
2 changes: 1 addition & 1 deletion src/Mercurius.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __construct()
/**
* Get model instance by name.
*
* @param string $name
* @param string $name
* @return Illuminate\Database\Eloquent\Model
*/
public function model(string $name)
Expand Down
2 changes: 1 addition & 1 deletion src/Setup/MigrationsHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Support\Carbon;

/**
* Timestamped Migrations handler
* Timestamped Migrations handler.
*
* - provides list of publishable migrations files
* - timestamp files with the current datetime
Expand Down
2 changes: 1 addition & 1 deletion src/Setup/ProvidesScriptVariables.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static function scriptVariables()
'csrfToken' => csrf_token(),
'env' => config('app.env'),
'i18n' => json_decode(file_get_contents(resource_path('lang/'.app()->getLocale().'/mercurius.json'))),
'user' => (new UserRepository)->getSettings(),
'user' => (new UserRepository())->getSettings(),
'pusherKey' => config('broadcasting.connections.pusher.key'),
'pusherCluster' => config('broadcasting.connections.pusher.options.cluster'),
]);
Expand Down

0 comments on commit 97fa7fe

Please sign in to comment.