Skip to content

Commit 35414fe

Browse files
authored
Merge pull request #454 from stephanus-tantiono/master
Support nova 5
2 parents 08b5b88 + 661ae32 commit 35414fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"require": {
1616
"php": ">=7.4",
1717
"laravel/framework": "^8.0|^9.0|^10.0|^11.0",
18-
"laravel/nova": "^4.0",
18+
"laravel/nova": "^4.0|^5.0",
1919
"spatie/laravel-medialibrary": "^8.0|^9.0|^10.0|^11.0"
2020
},
2121
"autoload": {

src/Fields/Media.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ private function removeDeletedMedia($data, Collection $medias): Collection
287287
* @param HasMedia|InteractsWithMedia $resource
288288
* @param null $attribute
289289
*/
290-
public function resolve($resource, $attribute = null)
290+
public function resolve($resource, ?string $attribute = null): void
291291
{
292292
$collectionName = $attribute ?? $this->attribute;
293293

0 commit comments

Comments
 (0)