@@ -13,7 +13,7 @@ class ModelHelper
1313 /**
1414 * @param \Illuminate\Database\Eloquent\Model|string $model
1515 *
16- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
16+ * @throws IncorrectModelException
1717 */
1818 public function connection ($ model ): ?string
1919 {
@@ -25,7 +25,7 @@ public function connection($model): ?string
2525 /**
2626 * @param \Illuminate\Database\Eloquent\Model|string $model
2727 *
28- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
28+ * @throws IncorrectModelException
2929 */
3030 public function table ($ model ): string
3131 {
@@ -37,7 +37,7 @@ public function table($model): string
3737 /**
3838 * @param \Illuminate\Database\Eloquent\Model|string $model
3939 *
40- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
40+ * @throws IncorrectModelException
4141 */
4242 public function tableWithConnection ($ model ): string
4343 {
@@ -52,7 +52,7 @@ public function tableWithConnection($model): string
5252 /**
5353 * @param \Illuminate\Database\Eloquent\Model|string $model
5454 *
55- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
55+ * @throws IncorrectModelException
5656 */
5757 public function primaryKey ($ model ): string
5858 {
@@ -64,7 +64,7 @@ public function primaryKey($model): string
6464 /**
6565 * @param \Illuminate\Database\Eloquent\Model|string $model
6666 *
67- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
67+ * @throws IncorrectModelException
6868 */
6969 public function primaryKeyType ($ model ): string
7070 {
@@ -76,7 +76,7 @@ public function primaryKeyType($model): string
7676 /**
7777 * @param \Illuminate\Database\Eloquent\Model|string $model
7878 *
79- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
79+ * @throws IncorrectModelException
8080 */
8181 public function query ($ model ): Builder
8282 {
@@ -96,7 +96,7 @@ public function className($model): string
9696 /**
9797 * @param \Illuminate\Database\Eloquent\Model|string $model
9898 *
99- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
99+ * @throws IncorrectModelException
100100 */
101101 public function fillable ($ model ): array
102102 {
@@ -109,7 +109,7 @@ public function fillable($model): array
109109 * @param \Illuminate\Database\Eloquent\Model|string $model
110110 * @param \Illuminate\Http\Request $request
111111 *
112- * @throws \DragonCode\LaravelSupport\Exceptions\ IncorrectModelException
112+ * @throws IncorrectModelException
113113 */
114114 public function onlyFillable ($ model , $ request ): array
115115 {
@@ -134,7 +134,7 @@ public function exceptFillable($model, ...$except): array
134134 *
135135 * @throws IncorrectModelException
136136 *
137- * @return \Illuminate\Database\Eloquent\ Model
137+ * @return Model
138138 */
139139 public function model ($ model )
140140 {
0 commit comments