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 Pagekit\Tests; abstract class DbTestCase extends \PHPUnit_Framework_Test..

Decoded Output download

<?php

namespace Pagekit\Tests;

abstract class DbTestCase extends \PHPUnit_Framework_TestCase
{
    use DbUtil;

    protected $connection;

    public function setUp()
    {
        try {

            $this->connection = $this->getSharedConnection();

        } catch (\Exception $e) {
            $this->markTestSkipped(sprintf('Unable to establish connection. (%s)', $e->getMessage()));
            return;
        }
    }
} ?>

Did this file decode correctly?

Original Code

<?php

namespace Pagekit\Tests;

abstract class DbTestCase extends \PHPUnit_Framework_TestCase
{
    use DbUtil;

    protected $connection;

    public function setUp()
    {
        try {

            $this->connection = $this->getSharedConnection();

        } catch (\Exception $e) {
            $this->markTestSkipped(sprintf('Unable to establish connection. (%s)', $e->getMessage()));
            return;
        }
    }
}

Function Calls

None

Variables

None

Stats

MD5 ce9475999baca724fbe0bd81b7402e7e
Eval Count 0
Decode Time 100 ms