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 Illuminate\Tests\Integration\View; use Exception; use Illuminate\Http\Re..
Decoded Output download
<?php
namespace Illuminate\Tests\Integration\View;
use Exception;
use Illuminate\Http\Response;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\Facades\View;
use Orchestra\Testbench\TestCase;
class RenderableViewExceptionTest extends TestCase
{
public function testRenderMethodOfExceptionThrownInViewGetsHandled()
{
Route::get('/', function () {
return View::make('renderable-exception');
});
$response = $this->get('/');
$response->assertSee('This is a renderable exception.');
}
protected function getEnvironmentSetUp($app)
{
$app['config']->set('view.paths', [__DIR__.'/templates']);
}
}
class RenderableException extends Exception
{
public function render($request)
{
return new Response('This is a renderable exception.');
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Tests\Integration\View;
use Exception;
use Illuminate\Http\Response;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\Facades\View;
use Orchestra\Testbench\TestCase;
class RenderableViewExceptionTest extends TestCase
{
public function testRenderMethodOfExceptionThrownInViewGetsHandled()
{
Route::get('/', function () {
return View::make('renderable-exception');
});
$response = $this->get('/');
$response->assertSee('This is a renderable exception.');
}
protected function getEnvironmentSetUp($app)
{
$app['config']->set('view.paths', [__DIR__.'/templates']);
}
}
class RenderableException extends Exception
{
public function render($request)
{
return new Response('This is a renderable exception.');
}
}
Function Calls
None |
Stats
MD5 | d66abfb46bf0813489a6e22ce6a7fce9 |
Eval Count | 0 |
Decode Time | 98 ms |