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 class BladeViewType { public function testBladeView(): void { $this..
Decoded Output download
<?php
class BladeViewType
{
public function testBladeView(): void
{
$this->doSomethingWithAView('home');
$this->doSomethingWithAView('emails.orders.shipped');
$this->doSomethingWithAView('users.index');
}
/**
* @phpstan-param view-string $view
*
* @param string $view
* @return void
*/
private function doSomethingWithAView(string $view): void
{
}
}
?>
Did this file decode correctly?
Original Code
<?php
class BladeViewType
{
public function testBladeView(): void
{
$this->doSomethingWithAView('home');
$this->doSomethingWithAView('emails.orders.shipped');
$this->doSomethingWithAView('users.index');
}
/**
* @phpstan-param view-string $view
*
* @param string $view
* @return void
*/
private function doSomethingWithAView(string $view): void
{
}
}
Function Calls
None |
Stats
MD5 | 3332ab787728ee98acc6a0003b35f32d |
Eval Count | 0 |
Decode Time | 117 ms |