@@ -4,8 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Illuminate\Support\ServiceProvider; |
6 | 6 | |
7 | -class AppServiceProvider extends ServiceProvider |
|
8 | -{ |
|
7 | +class AppServiceProvider extends ServiceProvider { |
|
9 | 8 | /** |
10 | 9 | * Bootstrap any application services. |
11 | 10 | * |
@@ -5,8 +5,7 @@ |
||
5 | 5 | use Closure; |
6 | 6 | use Illuminate\Support\Facades\Auth; |
7 | 7 | |
8 | -class RedirectIfAuthenticated |
|
9 | -{ |
|
8 | +class RedirectIfAuthenticated { |
|
10 | 9 | /** |
11 | 10 | * Handle an incoming request. |
12 | 11 | * |
@@ -4,8 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Illuminate\Foundation\Http\Kernel as HttpKernel; |
6 | 6 | |
7 | -class Kernel extends HttpKernel |
|
8 | -{ |
|
7 | +class Kernel extends HttpKernel { |
|
9 | 8 | /** |
10 | 9 | * The application's global HTTP middleware stack. |
11 | 10 | * |
@@ -5,8 +5,7 @@ |
||
5 | 5 | use Illuminate\Console\Scheduling\Schedule; |
6 | 6 | use Illuminate\Foundation\Console\Kernel as ConsoleKernel; |
7 | 7 | |
8 | -class Kernel extends ConsoleKernel |
|
9 | -{ |
|
8 | +class Kernel extends ConsoleKernel { |
|
10 | 9 | /** |
11 | 10 | * The Artisan commands provided by your application. |
12 | 11 | * |
@@ -2,8 +2,7 @@ |
||
2 | 2 | |
3 | 3 | use Illuminate\Database\Seeder; |
4 | 4 | |
5 | -class DatabaseSeeder extends Seeder |
|
6 | -{ |
|
5 | +class DatabaseSeeder extends Seeder { |
|
7 | 6 | /** |
8 | 7 | * Run the database seeds. |
9 | 8 | * |
@@ -5,8 +5,7 @@ |
||
5 | 5 | use InvalidArgumentException; |
6 | 6 | use SoapClient as NativeSoapClient; |
7 | 7 | |
8 | -class SoapClient |
|
9 | -{ |
|
8 | +class SoapClient { |
|
10 | 9 | /** |
11 | 10 | * @var string |
12 | 11 | */ |
@@ -2,8 +2,7 @@ |
||
2 | 2 | |
3 | 3 | namespace Bludata\Helpers; |
4 | 4 | |
5 | -class CurlHelper |
|
6 | -{ |
|
5 | +class CurlHelper { |
|
7 | 6 | protected $init; |
8 | 7 | protected $headers = []; |
9 | 8 | protected $response; |
@@ -6,8 +6,7 @@ |
||
6 | 6 | use Illuminate\Foundation\Application; |
7 | 7 | use Illuminate\Support\Facades\Route; |
8 | 8 | |
9 | -class BaseApplication extends Application |
|
10 | -{ |
|
9 | +class BaseApplication extends Application { |
|
11 | 10 | public function publicRoutes(string $uri, string $controller, Closure $routes = null, array $options = []) |
12 | 11 | { |
13 | 12 | $options['only'] = $options['only'] ?? ['index', 'show', 'destroyed']; |
@@ -5,8 +5,7 @@ |
||
5 | 5 | use Illuminate\Foundation\Auth\SendsPasswordResetEmails; |
6 | 6 | use LaravelSeed\Http\Controllers\Controller; |
7 | 7 | |
8 | -class ForgotPasswordController extends Controller |
|
9 | -{ |
|
8 | +class ForgotPasswordController extends Controller { |
|
10 | 9 | /* |
11 | 10 | |-------------------------------------------------------------------------- |
12 | 11 | | Password Reset Controller |