File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
}
11
11
],
12
12
"require" : {
13
- "php" : " ^8.0|^8.1|^8.2|^8.3" ,
14
- "laravel/framework" : " ^9.0|^10.0|^11.0"
13
+ "php" : " ^8.0|^8.1|^8.2|^8.3|^8.4 " ,
14
+ "laravel/framework" : " ^9.0|^10.0|^11.0|^12.0 "
15
15
},
16
16
"autoload" : {
17
17
"files" : [
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ interface ResourceRequest {
11
11
*
12
12
* @return string Request hashed identifier
13
13
*/
14
- public function hash (string $ append = null ): string ;
14
+ public function hash (? string $ append = null ): string ;
15
15
16
16
public function authorize (): bool ;
17
17
Original file line number Diff line number Diff line change 10
10
11
11
class ResourceRequest extends FormRequest implements Contracts \ResourceRequest {
12
12
13
- final public function hash (string $ append = null ): string {
13
+ final public function hash (? string $ append = null ): string {
14
14
$ parameters = $ this ->route ()?->parameters() ?? [];
15
15
16
16
return sprintf ('%s %s [%s@%s] ' ,
You can’t perform that action at this time.
0 commit comments