Added vendor/ directory for Composer's installed files
This commit is contained in:
19
vendor/illuminate/contracts/Routing/UrlRoutable.php
vendored
Executable file
19
vendor/illuminate/contracts/Routing/UrlRoutable.php
vendored
Executable file
@ -0,0 +1,19 @@
|
||||
<?php namespace 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();
|
||||
|
||||
}
|
Reference in New Issue
Block a user