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 namespace App\Http\Controllers\Modules; use App\Abstracts\Http\Controller; use App..
Decoded Output download
<?php
namespace App\Http\Controllers\Modules;
use App\Abstracts\Http\Controller;
use App\Traits\Modules;
class My extends Controller
{
use Modules;
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index()
{
$purchase = $this->getMyModules(['query' => ['limit' => 16]]);
$installed = $this->getInstalledModules();
return $this->response('modules.my.index', compact('purchase', 'installed'));
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace App\Http\Controllers\Modules;
use App\Abstracts\Http\Controller;
use App\Traits\Modules;
class My extends Controller
{
use Modules;
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index()
{
$purchase = $this->getMyModules(['query' => ['limit' => 16]]);
$installed = $this->getInstalledModules();
return $this->response('modules.my.index', compact('purchase', 'installed'));
}
}
Function Calls
None |
Stats
MD5 | 0b722ff8ac7e98fa3b1850f7ec31a516 |
Eval Count | 0 |
Decode Time | 110 ms |