File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace Coderflex \LaravelTicket \Concerns ;
4
4
5
+ use Coderflex \LaravelTicket \Enums \Priority ;
5
6
use Coderflex \LaravelTicket \Enums \Status ;
6
7
use Illuminate \Database \Eloquent \Model ;
7
- use Coderflex \LaravelTicket \Enums \Priority ;
8
8
9
9
trait InteractsWithTickets
10
10
{
@@ -203,6 +203,7 @@ public function assignTo(Model|int $user): self
203
203
public function makePriorityAsLow (): self
204
204
{
205
205
$ this ->update (['priority ' => Priority::LOW ->value ]);
206
+
206
207
return $ this ;
207
208
}
208
209
@@ -212,6 +213,7 @@ public function makePriorityAsLow(): self
212
213
public function makePriorityAsNormal (): self
213
214
{
214
215
$ this ->update (['priority ' => Priority::NORMAL ->value ]);
216
+
215
217
return $ this ;
216
218
}
217
219
@@ -221,6 +223,7 @@ public function makePriorityAsNormal(): self
221
223
public function makePriorityAsHigh (): self
222
224
{
223
225
$ this ->update (['priority ' => Priority::HIGH ->value ]);
226
+
224
227
return $ this ;
225
228
}
226
229
}
You can’t perform that action at this time.
0 commit comments