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 use PHPUnit\Framework\ExpectationFailedException; test('pass', function () { e..

Decoded Output download

<?php

use PHPUnit\Framework\ExpectationFailedException;

test('pass', function () {
    expect(1.1)->toBeScalar();
});

test('failures', function () {
    expect(null)->toBeScalar();
})->throws(ExpectationFailedException::class);

test('failures with custom message', function () {
    expect(null)->toBeScalar('oh no!');
})->throws(ExpectationFailedException::class, 'oh no!');

test('not failures', function () {
    expect(42)->not->toBeScalar();
})->throws(ExpectationFailedException::class);
 ?>

Did this file decode correctly?

Original Code

<?php

use PHPUnit\Framework\ExpectationFailedException;

test('pass', function () {
    expect(1.1)->toBeScalar();
});

test('failures', function () {
    expect(null)->toBeScalar();
})->throws(ExpectationFailedException::class);

test('failures with custom message', function () {
    expect(null)->toBeScalar('oh no!');
})->throws(ExpectationFailedException::class, 'oh no!');

test('not failures', function () {
    expect(42)->not->toBeScalar();
})->throws(ExpectationFailedException::class);

Function Calls

None

Variables

None

Stats

MD5 c2f09d193b274990e908760250ed8fc6
Eval Count 0
Decode Time 70 ms