name: RouteClearCommand class_comment: null dependencies: - name: Command type: class source: Illuminate\Console\Command - name: Filesystem type: class source: Illuminate\Filesystem\Filesystem - name: AsCommand type: class source: Symfony\Component\Console\Attribute\AsCommand properties: - name: name visibility: protected comment: '# * The console command name. # * # * @var string' - name: description visibility: protected comment: '# * The console command description. # * # * @var string' - name: files visibility: protected comment: '# * The filesystem instance. # * # * @var \Illuminate\Filesystem\Filesystem' methods: - name: __construct visibility: public parameters: - name: files comment: "# * The console command name.\n# *\n# * @var string\n# */\n# protected\ \ $name = 'route:clear';\n# \n# /**\n# * The console command description.\n# *\n\ # * @var string\n# */\n# protected $description = 'Remove the route cache file';\n\ # \n# /**\n# * The filesystem instance.\n# *\n# * @var \\Illuminate\\Filesystem\\\ Filesystem\n# */\n# protected $files;\n# \n# /**\n# * Create a new route clear\ \ command instance.\n# *\n# * @param \\Illuminate\\Filesystem\\Filesystem $files\n\ # * @return void" - name: handle visibility: public parameters: [] comment: '# * Execute the console command. # * # * @return void' traits: - Illuminate\Console\Command - Illuminate\Filesystem\Filesystem - Symfony\Component\Console\Attribute\AsCommand interfaces: []