whoami7 - Manager
:
/
home
/
qbizpnmr
/
test.qbiztax.com
/
modules
/
OfflinePayments
/
Listeners
/
Update
/
Upload File:
files >> /home/qbizpnmr/test.qbiztax.com/modules/OfflinePayments/Listeners/Update/Version300.php
<?php namespace Modules\OfflinePayments\Listeners\Update; use App\Abstracts\Listeners\Update as Listener; use App\Events\Install\UpdateFinished; use Illuminate\Support\Facades\File; class Version300 extends Listener { const ALIAS = 'offline-payments'; const VERSION = '3.0.0'; /** * Handle the event. * * @param $event * @return void */ public function handle(UpdateFinished $event) { if ($this->skipThisUpdate($event)) { return; } $this->deleteOldFiles(); } protected function deleteOldFiles() { File::delete(base_path('modules/OfflinePayments/Listeners/ShowInSettingsPage.php')); } }
Copyright ©2021 || Defacer Indonesia