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