Skip to content

Commit 9a8a381

Browse files
committed
Updated class namespaces
1 parent 5f05b13 commit 9a8a381

20 files changed

+35
-35
lines changed

database/factories/CategoryFactory.php

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

3-
use Chriscreate\Blog\Category;
3+
use Chriscreatess\Blog\Category;
44
use Faker\Generator as Faker;
55
use Illuminate\Support\Str;
66

database/factories/CommentFactory.php

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

3-
use Chriscreate\Blog\Comment;
3+
use Chriscreatess\Blog\Comment;
44
use Faker\Generator as Faker;
55

66
$factory->define(Comment::class, function (Faker $faker) {

database/factories/PostFactory.php

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

3-
use Chriscreate\Blog\Category;
4-
use Chriscreate\Blog\Post;
3+
use Chriscreatess\Blog\Category;
4+
use Chriscreatess\Blog\Post;
55
use Faker\Generator as Faker;
66
use Illuminate\Support\Str;
77

database/factories/TagFactory.php

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

3-
use Chriscreate\Blog\Tag;
3+
use Chriscreatess\Blog\Tag;
44
use Faker\Generator as Faker;
55

66
$factory->define(Tag::class, function (Faker $faker) {

database/seeds/PostsTableSeeder.php

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

3-
use Chriscreate\Blog\Comment;
4-
use Chriscreate\Blog\Post;
5-
use Chriscreate\Blog\Tag;
3+
use Chriscreatess\Blog\Comment;
4+
use Chriscreatess\Blog\Post;
5+
use Chriscreatess\Blog\Tag;
66
use Illuminate\Database\Seeder;
77

88
class PostsTableSeeder extends Seeder

src/BloggerServiceProvider.php

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

3-
namespace Chriscreate\Blog;
3+
namespace Chriscreates\Blog;
44

55
use Illuminate\Support\ServiceProvider;
66

src/Category.php

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

3-
namespace Chriscreate\Blog;
3+
namespace Chriscreates\Blog;
44

55
use Illuminate\Database\Eloquent\Model;
66

src/Comment.php

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

3-
namespace Chriscreate\Blog;
3+
namespace Chriscreates\Blog;
44

5-
use Chriscreate\Blog\Traits\Comment\CommentApproval;
6-
use Chriscreate\Blog\Traits\Comment\CommentScopes;
7-
use Chriscreate\Blog\Traits\IsAuthorable;
5+
use Chriscreates\Blog\Traits\Comment\CommentApproval;
6+
use Chriscreates\Blog\Traits\Comment\CommentScopes;
7+
use Chriscreates\Blog\Traits\IsAuthorable;
88
use Illuminate\Database\Eloquent\Model;
99

1010
class Comment extends Model

src/Post.php

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

3-
namespace Chriscreate\Blog;
3+
namespace Chriscreates\Blog;
44

5-
use Chriscreate\Blog\Traits\IsAuthorable;
6-
use Chriscreate\Blog\Traits\Post\PostAttributes;
7-
use Chriscreate\Blog\Traits\Post\PostScopes;
8-
use Chriscreate\Blog\Traits\Post\PostsHaveComments;
5+
use Chriscreates\Blog\Traits\IsAuthorable;
6+
use Chriscreates\Blog\Traits\Post\PostAttributes;
7+
use Chriscreates\Blog\Traits\Post\PostScopes;
8+
use Chriscreates\Blog\Traits\Post\PostsHaveComments;
99
use Illuminate\Database\Eloquent\Model;
1010

1111
class Post extends Model

src/Tag.php

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

3-
namespace Chriscreate\Blog;
3+
namespace Chriscreates\Blog;
44

55
use Illuminate\Database\Eloquent\Model;
66

0 commit comments

Comments
 (0)