Skip to content

Commit

Permalink
Fix null return
Browse files Browse the repository at this point in the history
  • Loading branch information
howdu committed Aug 17, 2023
1 parent 54d337e commit 2517e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CuratorPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function getPluralLabel(): string
return $this->evaluate($this->pluralLabel) ?? config('curator.resources.plural_label');
}

public function getNavigationGroup(): string
public function getNavigationGroup(): ?string
{
return $this->evaluate($this->navigationGroup) ?? config('curator.resources.navigation_group');
}
Expand Down

0 comments on commit 2517e3d

Please sign in to comment.