File manager - Edit - /home/autoph/public_html/projects/tickets-autohub/vendor/livewire/livewire/src/Commands/StubsCommand.php
Back
<?php namespace Livewire\Commands; use Illuminate\Console\Command; use Illuminate\Filesystem\Filesystem; class StubsCommand extends Command { protected $signature = 'livewire:stubs'; protected $description = 'Publish Livewire stubs'; protected $parser; public function handle() { if (! is_dir($stubsPath = base_path('stubs'))) { (new Filesystem)->makeDirectory($stubsPath); } file_put_contents( $stubsPath.'/livewire.stub', file_get_contents(__DIR__.'/livewire.stub') ); file_put_contents( $stubsPath.'/livewire.inline.stub', file_get_contents(__DIR__.'/livewire.inline.stub') ); file_put_contents( $stubsPath.'/livewire.view.stub', file_get_contents(__DIR__.'/livewire.view.stub') ); file_put_contents( $stubsPath.'/livewire.test.stub', file_get_contents(__DIR__.'/livewire.test.stub') ); $this->info('Stubs published successfully.'); } }
| ver. 1.4 |
.
| PHP 8.1.32 | Generation time: 0.04 |
proxy
|
phpinfo
|
Settings