Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeelio committed Jan 9, 2020
1 parent a26732d commit e6862af
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 3 additions & 2 deletions app/Contracts/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
*/
abstract class Controller extends \Illuminate\Routing\Controller
{
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;

use AuthorizesRequests;
use DispatchesJobs;
use ValidatesRequests;
/**
* Write a error to the flash and redirect the user to a route
*
Expand Down
4 changes: 3 additions & 1 deletion app/Events/BaseEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@

class BaseEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
use Dispatchable;
use InteractsWithSockets;
use SerializesModels;
}
6 changes: 4 additions & 2 deletions modules/Importer/Services/BaseImporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@

abstract class BaseImporter implements ShouldQueue
{
use LoggerTrait, Dispatchable, InteractsWithQueue, Queueable;

use LoggerTrait;
use Dispatchable;
use InteractsWithQueue;
use Queueable;
/**
* Holds the connection to the legacy database
*
Expand Down

0 comments on commit e6862af

Please sign in to comment.