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 LegacyTests\Browser\SupportCollections; use LegacyTests\Browser\TestCase..
Decoded Output download
<?php
namespace LegacyTests\Browser\SupportCollections;
use LegacyTests\Browser\TestCase;
class Test extends TestCase
{
public function test()
{
$this->browse(function ($browser) {
$this->visitLivewireComponent($browser, Component::class)
->assertSeeIn('@things', 'foo')
->assertDontSeeIn('@things', 'bar')
->assertSeeIn('@unordered', 'foo')
->assertSeeIn('@unordered', 'bar')
->waitForLivewire()->click('@add-bar')
->assertSeeIn('@things', 'bar')
->assertSeeIn('@unordered', 'foo')
->assertSeeIn('@unordered', 'bar')
->assertSeeIn('@unordered', 'baz')
;
});
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace LegacyTests\Browser\SupportCollections;
use LegacyTests\Browser\TestCase;
class Test extends TestCase
{
public function test()
{
$this->browse(function ($browser) {
$this->visitLivewireComponent($browser, Component::class)
->assertSeeIn('@things', 'foo')
->assertDontSeeIn('@things', 'bar')
->assertSeeIn('@unordered', 'foo')
->assertSeeIn('@unordered', 'bar')
->waitForLivewire()->click('@add-bar')
->assertSeeIn('@things', 'bar')
->assertSeeIn('@unordered', 'foo')
->assertSeeIn('@unordered', 'bar')
->assertSeeIn('@unordered', 'baz')
;
});
}
}
Function Calls
| None |
Stats
| MD5 | f519f8513b84d972a2e7720721c860ab |
| Eval Count | 0 |
| Decode Time | 99 ms |