We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d624fc0 commit 36f9333Copy full SHA for 36f9333
1 file changed
docs/1-essentials/01-routing.md
@@ -171,7 +171,7 @@ use Tempest\Database\IsDatabaseModel;
171
172
final class Aircraft implements Bindable
173
{
174
- public static function resolve(string $input): self
+ public static function resolve(string $input): ?static
175
176
return query(self::class)->resolve($input);
177
}
@@ -193,7 +193,7 @@ final class Aircraft implements Bindable
193
#[IsBindingValue]
194
public string $registrationNumber;
195
196
197
198
return query(self::class)
199
->where('registrationNumber', $input)
0 commit comments