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\Notifications; use Illuminate\Notifications\Action; use..
Decoded Output download
<?php
namespace Illuminate\Tests\Notifications;
use Illuminate\Notifications\Action;
use PHPUnit\Framework\TestCase;
class NotificationActionTest extends TestCase
{
public function testActionIsCreatedProperly()
{
$action = new Action('Text', 'url');
$this->assertSame('Text', $action->text);
$this->assertSame('url', $action->url);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Tests\Notifications;
use Illuminate\Notifications\Action;
use PHPUnit\Framework\TestCase;
class NotificationActionTest extends TestCase
{
public function testActionIsCreatedProperly()
{
$action = new Action('Text', 'url');
$this->assertSame('Text', $action->text);
$this->assertSame('url', $action->url);
}
}
Function Calls
| None |
Stats
| MD5 | caa7d36046cecdd5329817ef4a807291 |
| Eval Count | 0 |
| Decode Time | 97 ms |