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 Alchemy\Zippy\Tests\Adapter; use Alchemy\Zippy\Tests\TestCase; abstract..
Decoded Output download
<?php
namespace Alchemy\Zippy\Tests\Adapter;
use Alchemy\Zippy\Tests\TestCase;
abstract class AdapterTestCase extends TestCase
{
public function testIsSupported()
{
$adapter = $this->provideSupportedAdapter();
$this->assertTrue($adapter->isSupported());
}
public function testIsNotSupported()
{
$adapter = $this->provideNotSupportedAdapter();
$this->assertFalse($adapter->isSupported());
}
abstract protected function provideNotSupportedAdapter();
abstract protected function provideSupportedAdapter();
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Alchemy\Zippy\Tests\Adapter;
use Alchemy\Zippy\Tests\TestCase;
abstract class AdapterTestCase extends TestCase
{
public function testIsSupported()
{
$adapter = $this->provideSupportedAdapter();
$this->assertTrue($adapter->isSupported());
}
public function testIsNotSupported()
{
$adapter = $this->provideNotSupportedAdapter();
$this->assertFalse($adapter->isSupported());
}
abstract protected function provideNotSupportedAdapter();
abstract protected function provideSupportedAdapter();
}
Function Calls
None |
Stats
MD5 | 4a2abd6c6c52f8dca4315584f5022e6f |
Eval Count | 0 |
Decode Time | 117 ms |