Skip to content

Commit bf33177

Browse files
authored
Merge pull request #422 from wayofdev/fix/infection
2 parents 65047bf + c0db28a commit bf33177

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

app/src/Domain/Category/Models/Category.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
namespace Domain\Category\Models;
66

7-
use Database\Factories\CategoryFactory;
8-
use Illuminate\Database\Eloquent\Factories\HasFactory;
97
use Illuminate\Database\Eloquent\Model;
108

119
final class Category extends Model

app/src/Domain/Product/Models/Product.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44

55
namespace Domain\Product\Models;
66

7-
use Database\Factories\ProductFactory;
87
use Domain\Category\Models\Category;
9-
use Illuminate\Database\Eloquent\Factories\HasFactory;
108
use Illuminate\Database\Eloquent\Model;
119
use Illuminate\Database\Eloquent\Relations\BelongsTo;
1210

app/src/Domain/User/Models/User.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
namespace Domain\User\Models;
66

7-
use Database\Factories\UserFactory;
8-
use Illuminate\Database\Eloquent\Factories\HasFactory;
97
use Illuminate\Foundation\Auth\User as Authenticatable;
108
use Illuminate\Notifications\Notifiable;
119

app/src/Support/StringUtils.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
namespace Support;
66

7+
use function strtolower;
8+
use function ucwords;
9+
710
/**
811
* This is a stub class, just to show purpose of Support layer.
912
*/

0 commit comments

Comments
 (0)