DB.php 344 B

1234567891011121314151617181920
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. /**
  4. * @see \Illuminate\Database\DatabaseManager
  5. * @see \Illuminate\Database\Connection
  6. */
  7. class DB extends Facade
  8. {
  9. /**
  10. * Get the registered name of the component.
  11. *
  12. * @return string
  13. */
  14. protected static function getFacadeAccessor()
  15. {
  16. return 'db';
  17. }
  18. }