Blame view

public/vendor/illuminate/support/Fluent.php 3.79 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
  <?php
  
  namespace Illuminate\Support;
  
  use ArrayAccess;
  use Illuminate\Contracts\Support\Arrayable;
  use Illuminate\Contracts\Support\Jsonable;
  use JsonSerializable;
  
  class Fluent implements Arrayable, ArrayAccess, Jsonable, JsonSerializable
  {
      /**
       * All of the attributes set on the fluent instance.
       *
       * @var array
       */
      protected $attributes = [];
  
      /**
       * Create a new fluent instance.
       *
       * @param  array|object  $attributes
       * @return void
       */
      public function __construct($attributes = [])
      {
          foreach ($attributes as $key => $value) {
              $this->attributes[$key] = $value;
          }
      }
  
      /**
       * Get an attribute from the fluent instance.
       *
       * @param  string  $key
       * @param  mixed  $default
       * @return mixed
       */
      public function get($key, $default = null)
      {
          if (array_key_exists($key, $this->attributes)) {
              return $this->attributes[$key];
          }
  
          return value($default);
      }
  
      /**
       * Get the attributes from the fluent instance.
       *
       * @return array
       */
      public function getAttributes()
      {
          return $this->attributes;
      }
  
      /**
       * Convert the fluent instance to an array.
       *
       * @return array
       */
      public function toArray()
      {
          return $this->attributes;
      }
  
      /**
       * Convert the object into something JSON serializable.
       *
       * @return array
       */
      public function jsonSerialize()
      {
          return $this->toArray();
      }
  
      /**
       * Convert the fluent instance to JSON.
       *
       * @param  int  $options
       * @return string
       */
      public function toJson($options = 0)
      {
          return json_encode($this->jsonSerialize(), $options);
      }
  
      /**
       * Determine if the given offset exists.
       *
       * @param  string  $offset
       * @return bool
       */
      public function offsetExists($offset)
      {
          return isset($this->attributes[$offset]);
      }
  
      /**
       * Get the value for a given offset.
       *
       * @param  string  $offset
       * @return mixed
       */
      public function offsetGet($offset)
      {
          return $this->get($offset);
      }
  
      /**
       * Set the value at the given offset.
       *
       * @param  string  $offset
       * @param  mixed  $value
       * @return void
       */
      public function offsetSet($offset, $value)
      {
          $this->attributes[$offset] = $value;
      }
  
      /**
       * Unset the value at the given offset.
       *
       * @param  string  $offset
       * @return void
       */
      public function offsetUnset($offset)
      {
          unset($this->attributes[$offset]);
      }
  
      /**
       * Handle dynamic calls to the fluent instance to set attributes.
       *
       * @param  string  $method
       * @param  array  $parameters
       * @return $this
       */
      public function __call($method, $parameters)
      {
          $this->attributes[$method] = count($parameters) > 0 ? $parameters[0] : true;
  
          return $this;
      }
  
      /**
       * Dynamically retrieve the value of an attribute.
       *
       * @param  string  $key
       * @return mixed
       */
      public function __get($key)
      {
          return $this->get($key);
      }
  
      /**
       * Dynamically set the value of an attribute.
       *
       * @param  string  $key
       * @param  mixed  $value
       * @return void
       */
      public function __set($key, $value)
      {
          $this->offsetSet($key, $value);
      }
  
      /**
       * Dynamically check if an attribute is set.
       *
       * @param  string  $key
       * @return bool
       */
      public function __isset($key)
      {
          return $this->offsetExists($key);
      }
  
      /**
       * Dynamically unset an attribute.
       *
       * @param  string  $key
       * @return void
       */
      public function __unset($key)
      {
          $this->offsetUnset($key);
      }
  }