Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php use App\Models\Currency; use App\Utils\Traits\AppSetup; use Illuminate\Database\Mig..
Decoded Output download
<?php
use App\Models\Currency;
use App\Utils\Traits\AppSetup;
use Illuminate\Database\Migrations\Migration;
return new class extends Migration {
use AppSetup;
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$currency = Currency::find(13);
if ($currency) {
$currency->update(['symbol' => '$']);
}
$this->buildCache(true);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
};
?>
Did this file decode correctly?
Original Code
<?php
use App\Models\Currency;
use App\Utils\Traits\AppSetup;
use Illuminate\Database\Migrations\Migration;
return new class extends Migration {
use AppSetup;
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$currency = Currency::find(13);
if ($currency) {
$currency->update(['symbol' => '$']);
}
$this->buildCache(true);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
};
Function Calls
None |
Stats
MD5 | 37e4aa91f026e29b9501c78001b70c29 |
Eval Count | 0 |
Decode Time | 95 ms |