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 declare(strict_types=1); it('can fail with comparison', function () { expect(t..

Decoded Output download

<?php

declare(strict_types=1);

it('can fail with comparison', function () {
    expect(true)->toEqual(false);
});

it('can be ignored because of no assertions', function () {

});

it('can be ignored because it is skipped', function () {
    expect(true)->toBeTrue();
})->skip("this is why");

it('can fail', function () {
    $this->fail("oh noo");
});

it('throws exception', function () {
    throw new Exception('test error');
});

it('is not done yet', function () {

})->todo();

todo("build this one.");

it('is passing', function () {
    expect(true)->toEqual(true);
});

 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

it('can fail with comparison', function () {
    expect(true)->toEqual(false);
});

it('can be ignored because of no assertions', function () {

});

it('can be ignored because it is skipped', function () {
    expect(true)->toBeTrue();
})->skip("this is why");

it('can fail', function () {
    $this->fail("oh noo");
});

it('throws exception', function () {
    throw new Exception('test error');
});

it('is not done yet', function () {

})->todo();

todo("build this one.");

it('is passing', function () {
    expect(true)->toEqual(true);
});

Function Calls

None

Variables

None

Stats

MD5 fea6945195525bae3fb5b20405b119dc
Eval Count 0
Decode Time 98 ms