Advertisement
Guest User

DateTimeRepository

a guest
Apr 22nd, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Repositories;
  4.  
  5. use DateTimeZone;
  6. use App\Contracts\DateTimeInterface;
  7.  
  8. class DateTimeRepository implements DateTimeInterface
  9. {
  10.     public function listIdentifiers(): array
  11.     {
  12.         return DateTimeZone::listIdentifiers(DateTimeZone::ALL);
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement