12345678910111213141516171819202122232425 |
- <?php
- namespace Illuminate\Tests\Testing\Stubs;
- use Illuminate\Contracts\Support\Arrayable;
- class ArrayableStubObject implements Arrayable
- {
- protected $data;
- public function __construct($data = [])
- {
- $this->data = $data;
- }
- public static function make($data = [])
- {
- return new self($data);
- }
- public function toArray()
- {
- return $this->data;
- }
- }
|