CacheSmsTest.php 537 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /*
  3. * This file is part of ibrand/laravel-sms.
  4. *
  5. * (c) iBrand <https://www.ibrand.cc>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace iBrand\Sms\Test;
  11. use iBrand\Sms\Storage\CacheStorage;
  12. /**
  13. * Class SmsTest.
  14. */
  15. class CacheSmsTest extends SmsTest
  16. {
  17. protected function getEnvironmentSetUp($app)
  18. {
  19. parent::getEnvironmentSetUp($app);
  20. $app['config']->set('ibrand.sms.storage', CacheStorage::class);
  21. }
  22. }