Blame view

public/vendor/illuminate/contracts/Routing/UrlRoutable.php 881 Bytes
86143e36f   Андрей Ларионов   Коммит вторник
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  <?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();
  
      /**
       * 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);
  }