File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -244,7 +244,8 @@ public function select(string...$keys):Trigger {
244
244
245
245
return $ this ->newTrigger ("with " , ...$ keys );
246
246
}
247
- #[\Deprecated("Use select() instead to avoid ambiguity with immutable `with` functions " )]
247
+
248
+ /** @deprecated Use select() instead to avoid ambiguity with immutable `with` functions */
248
249
public function with (string ...$ keys ):Trigger {
249
250
return $ this ->select (...$ keys );
250
251
}
@@ -256,7 +257,7 @@ public function with(string...$keys):Trigger {
256
257
public function selectAllExcept (string ...$ keys ):Trigger {
257
258
return $ this ->newTrigger ("without " , ...$ keys );
258
259
}
259
- #[\Deprecated( " Use selectAllExcept() instead to avoid ambiguity with immutable `with` functions " )]
260
+ /** @deprecated Use selectAllExcept() instead to avoid ambiguity with immutable `with` functions */
260
261
public function without (string ...$ keys ):Trigger {
261
262
return $ this ->selectAllExcept (...$ keys );
262
263
}
@@ -267,7 +268,7 @@ public function without(string...$keys):Trigger {
267
268
public function selectAll ():Trigger {
268
269
return $ this ->newTrigger ("withAll " );
269
270
}
270
- #[\Deprecated( " Use selectAll() instead to avoid ambiguity with immutable `with` functions " )]
271
+ /** @deprecated Use selectAll() instead to avoid ambiguity with immutable `with` functions */
271
272
public function withAll ():Trigger {
272
273
return $ this ->selectAll ();
273
274
}
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ public function select(string...$keys):self {
56
56
57
57
return $ this ;
58
58
}
59
- #[\Deprecated( " Use select() instead to avoid ambiguity with immutable `with` functions " )]
59
+ /** @deprecated Use select() instead to avoid ambiguity with immutable `with` functions */
60
60
public function with (string ...$ keys ):self {
61
61
return $ this ->select (...$ keys );
62
62
}
@@ -68,7 +68,7 @@ public function selectAllExcept(string...$keys):self {
68
68
69
69
return $ this ;
70
70
}
71
- #[\Deprecated( " Use selectAllExcept() instead to avoid ambiguity with immutable `with` functions " )]
71
+ /** @deprecated Use selectAllExcept() instead to avoid ambiguity with immutable `with` functions */
72
72
public function without (string ...$ keys ):self {
73
73
return $ this ->selectAllExcept (...$ keys );
74
74
}
@@ -79,7 +79,7 @@ public function selectAll():self {
79
79
80
80
return $ this ;
81
81
}
82
- #[\Deprecated( " Use selectAll() instead to avoid ambiguity with immutable `with` functions " )]
82
+ /** @deprecated Use selectAll() instead to avoid ambiguity with immutable `with` functions */
83
83
public function withAll ():self {
84
84
return $ this ->selectAll ();
85
85
}
You can’t perform that action at this time.
0 commit comments