Values.php 210 B

12345678910111213
  1. <?php
  2. namespace Illuminate\Tests\Validation\fixtures;
  3. use Illuminate\Contracts\Support\Arrayable;
  4. class Values implements Arrayable
  5. {
  6. public function toArray()
  7. {
  8. return [1, 2, 3, 4];
  9. }
  10. }