@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | $apiVersionNumber = $this->getRouteFileVersionNumber($fileNameWithoutExtension); |
| 55 | 55 | |
| 56 | 56 | $this->apiRouter->version('v' . $apiVersionNumber, |
| 57 | - function (DingoApiRouter $router) use ($file, $containerPath, $containersNamespace) { |
|
| 57 | + function(DingoApiRouter $router) use ($file, $containerPath, $containersNamespace) { |
|
| 58 | 58 | |
| 59 | 59 | $router->group([ |
| 60 | 60 | // Routes Namespace |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | 'limit' => Config::get('api.limit'), |
| 66 | 66 | // The API limit expiry time. |
| 67 | 67 | 'expires' => Config::get('api.limit_expires'), |
| 68 | - ], function ($router) use ($file) { |
|
| 68 | + ], function($router) use ($file) { |
|
| 69 | 69 | |
| 70 | 70 | require $file->getPathname(); |
| 71 | 71 | |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | foreach ($files as $file) { |
| 97 | 97 | $this->webRouter->group([ |
| 98 | 98 | 'namespace' => $containersNamespace . '\\Containers\\' . basename($containerPath) . '\\Controllers', |
| 99 | - ], function (LaravelRouter $router) use ($file) { |
|
| 99 | + ], function(LaravelRouter $router) use ($file) { |
|
| 100 | 100 | require $file->getPathname(); |
| 101 | 101 | }); |
| 102 | 102 | } |
@@ -28,6 +28,6 @@ |
||
| 28 | 28 | */ |
| 29 | 29 | public function handle() |
| 30 | 30 | { |
| 31 | - $this->comment(PHP_EOL.Inspiring::quote().PHP_EOL); |
|
| 31 | + $this->comment(PHP_EOL . Inspiring::quote() . PHP_EOL); |
|
| 32 | 32 | } |
| 33 | 33 | } |
@@ -32,6 +32,6 @@ |
||
| 32 | 32 | protected function schedule(Schedule $schedule) |
| 33 | 33 | { |
| 34 | 34 | $schedule->command('inspire') |
| 35 | - ->hourly(); |
|
| 35 | + ->hourly(); |
|
| 36 | 36 | } |
| 37 | 37 | } |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | $locale = $request->header('Content-Language'); |
| 39 | 39 | |
| 40 | 40 | // if the header is missed |
| 41 | - if(!$locale){ |
|
| 41 | + if (!$locale) { |
|
| 42 | 42 | // take the default local language |
| 43 | 43 | $locale = $this->app->config->get('app.locale'); |
| 44 | 44 | } |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | { |
| 35 | 35 | $containersNames = []; |
| 36 | 36 | |
| 37 | - foreach($this->getContainersPaths() as $containersPath){ |
|
| 37 | + foreach ($this->getContainersPaths() as $containersPath) { |
|
| 38 | 38 | $containersNames[] = basename($containersPath); |
| 39 | 39 | } |
| 40 | 40 | |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | */ |
| 62 | 62 | public function buildMainServiceProvider($containersNamespace, $containerName) |
| 63 | 63 | { |
| 64 | - if($containerName != 'Port') { |
|
| 64 | + if ($containerName != 'Port') { |
|
| 65 | 65 | return $containersNamespace . "\\Containers\\" . $containerName . "\\Providers\\" . $containerName . "ServiceProvider"; |
| 66 | 66 | } |
| 67 | 67 | |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | */ |
| 19 | 19 | public function register() |
| 20 | 20 | { |
| 21 | - $this->app->bind('PortButler', function () { |
|
| 21 | + $this->app->bind('PortButler', function() { |
|
| 22 | 22 | return $this->app->make(PortButler::class); |
| 23 | 23 | }); |
| 24 | 24 | } |
@@ -6,7 +6,6 @@ |
||
| 6 | 6 | use App\Containers\Stripe\Repositories\Eloquent\StripeAccountRepository; |
| 7 | 7 | use App\Containers\User\Models\User; |
| 8 | 8 | use App\Port\Action\Abstracts\Action; |
| 9 | -use Auth; |
|
| 10 | 9 | |
| 11 | 10 | /** |
| 12 | 11 | * Class CreateStripeAccountAction. |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | * @param \App\Containers\User\Actions\FindUserByIdAction $findUserByIdAction |
| 22 | 22 | * @param \App\Containers\Email\Actions\ValidateConfirmationCodeAction $validateConfirmationCodeAction |
| 23 | 23 | * |
| 24 | - * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector |
|
| 24 | + * @return \Illuminate\Http\RedirectResponse |
|
| 25 | 25 | */ |
| 26 | 26 | public function confirmUserEmail( |
| 27 | 27 | ConfirmUserEmailRequest $confirmUserEmailRequest, |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | */ |
| 19 | 19 | public function up() |
| 20 | 20 | { |
| 21 | - Schema::create('paypal_accounts', function (Blueprint $table) { |
|
| 21 | + Schema::create('paypal_accounts', function(Blueprint $table) { |
|
| 22 | 22 | $table->increments('id'); |
| 23 | 23 | |
| 24 | 24 | $table->string('some_id'); |