golden hour
/opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/illuminate/contracts/Routing
⬆️ Go Up
Upload
File/Folder
Size
Actions
BindingRegistrar.php
465 B
Del
OK
Registrar.php
2.64 KB
Del
OK
ResponseFactory.php
4.63 KB
Del
OK
UrlGenerator.php
2.76 KB
Del
OK
UrlRoutable.php
897 B
Del
OK
Edit: UrlRoutable.php
<?php namespace RectorPrefix202411\Illuminate\Contracts\Routing; interface UrlRoutable { /** * Get the value of the model's route key. * * @return mixed */ public function getRouteKey(); /** * Get the route key for the model. * * @return string */ public function getRouteKeyName(); /** * Retrieve the model for a bound value. * * @param mixed $value * @param string|null $field * @return \Illuminate\Database\Eloquent\Model|null */ public function resolveRouteBinding($value, $field = null); /** * Retrieve the child model for a bound value. * * @param string $childType * @param mixed $value * @param string|null $field * @return \Illuminate\Database\Eloquent\Model|null */ public function resolveChildRouteBinding($childType, $value, $field); }
Save