Skip to content

Commit 65373ae

Browse files
authored
Apply fixes from StyleCI (#18)
1 parent fa2d7f5 commit 65373ae

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

database/migrations/2018_02_13_204645_create_urls_table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
use Illuminate\Support\Facades\Schema;
4-
use Illuminate\Database\Schema\Blueprint;
53
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
66

77
class CreateUrlsTable extends Migration
88
{

database/migrations/2018_03_22_160425_add_counter_to_urls.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

3-
use Illuminate\Support\Facades\Schema;
43
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Support\Facades\Schema;
55

66
class AddCounterToUrls extends Migration
77
{

database/migrations/2018_04_23_160425_add_title_and_description_to_urls.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

3-
use Illuminate\Support\Facades\Schema;
43
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Support\Facades\Schema;
55

66
class AddTitleAndDescriptionToUrls extends Migration
77
{

database/migrations/2019_09_06_231356_add_expires_at_to_urls.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

3-
use Illuminate\Support\Facades\Schema;
43
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Support\Facades\Schema;
55

66
class AddExpiresAtToUrls extends Migration
77
{

src/Http/Controllers/UrlController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
namespace Gallib\ShortUrl\Http\Controllers;
44

55
use Carbon\Carbon;
6-
use Gallib\ShortUrl\Url;
7-
use Illuminate\Routing\Controller;
86
use Gallib\ShortUrl\Http\Requests\UrlRequest;
97
use Gallib\ShortUrl\Http\Responses\UrlResponse;
8+
use Gallib\ShortUrl\Url;
9+
use Illuminate\Routing\Controller;
1010

1111
class UrlController extends Controller
1212
{

src/Parsers/UrlParser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
namespace Gallib\ShortUrl\Parsers;
44

5-
use GuzzleHttp\Client;
65
use Gallib\ShortUrl\Url;
7-
use Symfony\Component\DomCrawler\Crawler;
6+
use GuzzleHttp\Client;
87
use GuzzleHttp\Exception\RequestException;
8+
use Symfony\Component\DomCrawler\Crawler;
99

1010
class UrlParser
1111
{

src/ShortUrlServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace Gallib\ShortUrl;
44

5-
use GuzzleHttp\Client;
65
use Gallib\ShortUrl\Parsers\UrlParser;
6+
use GuzzleHttp\Client;
77
use Illuminate\Support\ServiceProvider;
88

99
class ShortUrlServiceProvider extends ServiceProvider

0 commit comments

Comments
 (0)