Lang.php 312 B

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