@@ -13,7 +13,7 @@ class ModelHelper
13
13
/**
14
14
* @param \Illuminate\Database\Eloquent\Model|string $model
15
15
*
16
- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
16
+ * @throws IncorrectModelException
17
17
*/
18
18
public function connection ($ model ): ?string
19
19
{
@@ -25,7 +25,7 @@ public function connection($model): ?string
25
25
/**
26
26
* @param \Illuminate\Database\Eloquent\Model|string $model
27
27
*
28
- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
28
+ * @throws IncorrectModelException
29
29
*/
30
30
public function table ($ model ): string
31
31
{
@@ -37,7 +37,7 @@ public function table($model): string
37
37
/**
38
38
* @param \Illuminate\Database\Eloquent\Model|string $model
39
39
*
40
- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
40
+ * @throws IncorrectModelException
41
41
*/
42
42
public function tableWithConnection ($ model ): string
43
43
{
@@ -52,7 +52,7 @@ public function tableWithConnection($model): string
52
52
/**
53
53
* @param \Illuminate\Database\Eloquent\Model|string $model
54
54
*
55
- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
55
+ * @throws IncorrectModelException
56
56
*/
57
57
public function primaryKey ($ model ): string
58
58
{
@@ -64,7 +64,7 @@ public function primaryKey($model): string
64
64
/**
65
65
* @param \Illuminate\Database\Eloquent\Model|string $model
66
66
*
67
- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
67
+ * @throws IncorrectModelException
68
68
*/
69
69
public function primaryKeyType ($ model ): string
70
70
{
@@ -76,7 +76,7 @@ public function primaryKeyType($model): string
76
76
/**
77
77
* @param \Illuminate\Database\Eloquent\Model|string $model
78
78
*
79
- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
79
+ * @throws IncorrectModelException
80
80
*/
81
81
public function query ($ model ): Builder
82
82
{
@@ -96,7 +96,7 @@ public function className($model): string
96
96
/**
97
97
* @param \Illuminate\Database\Eloquent\Model|string $model
98
98
*
99
- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
99
+ * @throws IncorrectModelException
100
100
*/
101
101
public function fillable ($ model ): array
102
102
{
@@ -109,7 +109,7 @@ public function fillable($model): array
109
109
* @param \Illuminate\Database\Eloquent\Model|string $model
110
110
* @param \Illuminate\Http\Request $request
111
111
*
112
- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
112
+ * @throws IncorrectModelException
113
113
*/
114
114
public function onlyFillable ($ model , $ request ): array
115
115
{
@@ -134,7 +134,7 @@ public function exceptFillable($model, ...$except): array
134
134
*
135
135
* @throws IncorrectModelException
136
136
*
137
- * @return \Illuminate\Database\Eloquent\ Model
137
+ * @return Model
138
138
*/
139
139
public function model ($ model )
140
140
{
0 commit comments