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\Messages\Si..
Decoded Output download
<?php
namespace Illuminate\Tests\Notifications;
use Illuminate\Notifications\Messages\SimpleMessage as Message;
use PHPUnit\Framework\TestCase;
class NotificationMessageTest extends TestCase
{
public function testLevelCanBeRetrieved()
{
$message = new Message;
$this->assertSame('info', $message->level);
$message = new Message;
$message->level('error');
$this->assertSame('error', $message->level);
}
public function testMessageFormatsMultiLineText()
{
$message = new Message;
$message->with('
This is a
single line of text.
');
$this->assertSame('This is a single line of text.', $message->introLines[0]);
$message = new Message;
$message->with([
'This is a',
'single line of text.',
]);
$this->assertSame('This is a single line of text.', $message->introLines[0]);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Tests\Notifications;
use Illuminate\Notifications\Messages\SimpleMessage as Message;
use PHPUnit\Framework\TestCase;
class NotificationMessageTest extends TestCase
{
public function testLevelCanBeRetrieved()
{
$message = new Message;
$this->assertSame('info', $message->level);
$message = new Message;
$message->level('error');
$this->assertSame('error', $message->level);
}
public function testMessageFormatsMultiLineText()
{
$message = new Message;
$message->with('
This is a
single line of text.
');
$this->assertSame('This is a single line of text.', $message->introLines[0]);
$message = new Message;
$message->with([
'This is a',
'single line of text.',
]);
$this->assertSame('This is a single line of text.', $message->introLines[0]);
}
}
Function Calls
| None |
Stats
| MD5 | 6130eb58d113c41f2edc1eaa34319727 |
| Eval Count | 0 |
| Decode Time | 100 ms |