Skip to content

Commit 9a4841a

Browse files
committed
🚧 Laravel 8 update #99
1 parent 2be59cc commit 9a4841a

25 files changed

+2936
-2779
lines changed

.env.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ APP_ENV=local
55
APP_KEY=
66
# set debug to false in production
77
APP_DEBUG=true
8-
APP_URL=http://127.0.0.1:8000
8+
APP_URL=http://shaark.test
99
APP_TIMEZONE=Europe/Paris
1010
# "en", "fr", "de", "nl" or "ja"
1111
APP_LANG=en

app/Album.php app/Models/Album.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace App;
3+
namespace App\Models;
44

55
use App\Concerns\Models\Postable;
66
use App\Services\Shaark\Shaark;

app/Chest.php app/Models/Chest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace App;
3+
namespace App\Models;
44

55
use App\Concerns\Models\Postable;
66
use Illuminate\Database\Eloquent\Builder;

app/Comment.php app/Models/Comment.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace App;
3+
namespace App\Models;
44

55
use Illuminate\Database\Eloquent\Builder;
66
use Illuminate\Database\Eloquent\Model;

app/Link.php app/Models/Link.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace App;
3+
namespace App\Models;
44

55
use App\Concerns\Models\Postable;
66
use App\Services\LinkPreview\LinkPreview;

app/Login.php app/Models/Login.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace App;
3+
namespace App\Models;
44

55
use Lab404\AuthChecker\Models\Login as BaseLogin;
66

app/Post.php app/Models/Post.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace App;
3+
namespace App\Models;
44

55
use App\Concerns\Models\HasTags;
66
use Illuminate\Database\Eloquent\Builder;

app/SecureLogin.php app/Models/SecureLogin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace App;
3+
namespace App\Models;
44

55
use Illuminate\Contracts\Auth\Authenticatable;
66
use Illuminate\Database\Eloquent\Builder;

app/Share.php app/Models/Share.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace App;
3+
namespace App\Models;
44

55
use Illuminate\Database\Eloquent\Builder;
66
use Illuminate\Database\Eloquent\Model;

app/Story.php app/Models/Story.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace App;
3+
namespace App\Models;
44

55
use App\Concerns\Models\Postable;
66
use Illuminate\Database\Eloquent\Builder;

app/Tag.php app/Models/Tag.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace App;
3+
namespace App\Models;
44

55
use Illuminate\Database\Eloquent\Builder;
66
use Illuminate\Database\Eloquent\Model;

app/User.php app/Models/User.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace App;
3+
namespace App\Models;
44

55
use Illuminate\Database\Eloquent\Builder;
66
use Illuminate\Database\Eloquent\Relations\HasMany;

app/Wall.php app/Models/Wall.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace App;
3+
namespace App\Models;
44

55
use Illuminate\Database\Eloquent\Builder;
66
use Illuminate\Database\Eloquent\Model;

0 commit comments

Comments
 (0)