@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | // if DataArray `\League\Fractal\Serializer\DataArraySerializer` do noting since it's set by default by the Dingo API |
36 | 36 | if ($serializerName !== 'DataArray') { |
37 | - app('Dingo\Api\Transformer\Factory')->setAdapter(function () use ($serializerName) { |
|
37 | + app('Dingo\Api\Transformer\Factory')->setAdapter(function() use ($serializerName) { |
|
38 | 38 | switch ($serializerName) { |
39 | 39 | case 'JsonApi': |
40 | 40 | $serializer = new \League\Fractal\Serializer\JsonApiSerializer(Config::get('api.domain')); |
@@ -37,6 +37,6 @@ |
||
37 | 37 | */ |
38 | 38 | public function apply($model, PrettusRepositoryInterface $repository) |
39 | 39 | { |
40 | - return DB::table($model->getModel()->getTable())->select('*', DB::raw('count('.$this->field.') as total_count'))->groupBy($this->field); |
|
40 | + return DB::table($model->getModel()->getTable())->select('*', DB::raw('count(' . $this->field . ') as total_count'))->groupBy($this->field); |
|
41 | 41 | } |
42 | 42 | } |
@@ -36,7 +36,7 @@ |
||
36 | 36 | */ |
37 | 37 | public function apply($model, PrettusRepositoryInterface $repository) |
38 | 38 | { |
39 | - if(!$this->userId){ |
|
39 | + if (!$this->userId) { |
|
40 | 40 | $this->userId = Auth::user()->id; |
41 | 41 | } |
42 | 42 |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('failed_jobs', function (Blueprint $table) { |
|
16 | + Schema::create('failed_jobs', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->text('connection'); |
19 | 19 | $table->text('queue'); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | */ |
62 | 62 | public function send($data = []) |
63 | 63 | { |
64 | - if(!$this->fromEmail || !$this->toEmail){ |
|
64 | + if (!$this->fromEmail || !$this->toEmail) { |
|
65 | 65 | throw new EmailIsMissedException(); |
66 | 66 | } |
67 | 67 | |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | // check if sending emails is enabled and if this is not running a testing environment |
71 | 71 | if (Config::get('mail.enabled')) { |
72 | 72 | |
73 | - Mail::queue('EmailTemplates.' . $this->template, $data, function ($m) { |
|
73 | + Mail::queue('EmailTemplates.' . $this->template, $data, function($m) { |
|
74 | 74 | $m->from($this->fromEmail, $this->fromName); |
75 | 75 | $m->to($this->toEmail, $this->toName) |
76 | 76 | ->subject($this->subject); |
@@ -220,7 +220,7 @@ |
||
220 | 220 | */ |
221 | 221 | 'generator' => [ |
222 | 222 | 'basePath' => env('SRC_PATH'), |
223 | - 'rootNamespace' => env('ROOT_NAMESPACE').'\\', |
|
223 | + 'rootNamespace' => env('ROOT_NAMESPACE') . '\\', |
|
224 | 224 | 'paths' => [ |
225 | 225 | 'models' => 'Entities', |
226 | 226 | 'repositories' => 'Repositories', |
@@ -64,7 +64,7 @@ |
||
64 | 64 | */ |
65 | 65 | public function getContainersPaths() |
66 | 66 | { |
67 | - return File::directories(app_path('Containers'));; |
|
67 | + return File::directories(app_path('Containers')); ; |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -30,7 +30,6 @@ |
||
30 | 30 | use App\Containers\Authorization\UI\API\Requests\SyncUserRolesRequest; |
31 | 31 | use App\Containers\Authorization\UI\API\Transformers\PermissionTransformer; |
32 | 32 | use App\Containers\Authorization\UI\API\Transformers\RoleTransformer; |
33 | -use App\Containers\User\Models\User; |
|
34 | 33 | use App\Containers\User\UI\API\Transformers\UserTransformer; |
35 | 34 | use App\Ship\Parents\Controllers\ApiController; |
36 | 35 |
@@ -19,7 +19,6 @@ |
||
19 | 19 | * Write the DB queries in the Log and Display them in the |
20 | 20 | * terminal (in case you want to see them while executing the tests). |
21 | 21 | * |
22 | - * @param bool|false $terminal |
|
23 | 22 | */ |
24 | 23 | public function run() |
25 | 24 | { |
@@ -30,7 +30,7 @@ |
||
30 | 30 | $consoleOutputEnabled = Config::get('debugger.queries.output.console'); |
31 | 31 | $logOutputEnabled = Config::get('debugger.queries.output.log'); |
32 | 32 | |
33 | - DB::listen(function ($event) use ($consoleOutputEnabled, $logOutputEnabled) { |
|
33 | + DB::listen(function($event) use ($consoleOutputEnabled, $logOutputEnabled) { |
|
34 | 34 | $fullQuery = vsprintf(str_replace(['%', '?'], ['%%', '%s'], $event->sql), $event->bindings); |
35 | 35 | |
36 | 36 | $result = $event->connectionName . ' (' . $event->time . '): ' . $fullQuery; |