Conversion.php 312 B

1234567891011121314151617
  1. <?php namespace Abhimanyu003\Conversion\Facades;
  2. use Illuminate\Support\Facades\Facade;
  3. class Conversion extends Facade
  4. {
  5. /**
  6. * Get the registered name of the component.
  7. *
  8. * @return string
  9. */
  10. protected static function getFacadeAccessor()
  11. {
  12. return 'conversion';
  13. }
  14. }