@@ -4,8 +4,7 @@ |
||
4 | 4 | use Illuminate\Database\Schema\Blueprint; |
5 | 5 | use Illuminate\Support\Facades\Schema; |
6 | 6 | |
7 | -class CreateUsersTable extends Migration |
|
8 | -{ |
|
7 | +class CreateUsersTable extends Migration { |
|
9 | 8 | /** |
10 | 9 | * Run the migrations. |
11 | 10 | * |
@@ -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($uri, $controller, $name) |
12 | 11 | { |
13 | 12 | Route::get($uri, $controller.'@index') |