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\VersionProbe; use Alchemy\Zippy\Tests\TestCa..
Decoded Output download
<?php
namespace Alchemy\Zippy\Tests\Adapter\VersionProbe;
use Alchemy\Zippy\Tests\TestCase;
use Alchemy\Zippy\Adapter\VersionProbe\ZipExtensionVersionProbe;
use Alchemy\Zippy\Adapter\VersionProbe\VersionProbeInterface;
class ZipExtensionVersionProbeTest extends TestCase
{
/**
* @covers Alchemy\Zippy\Adapter\VersionProbe\ZipExtensionVersionProbe::getStatus
*/
public function testGetStatus()
{
$expectation = VersionProbeInterface::PROBE_OK;
if (false === class_exists('ZipArchive')) {
$expectation = VersionProbeInterface::PROBE_NOTSUPPORTED;
}
$probe = new ZipExtensionVersionProbe();
$this->assertEquals($expectation, $probe->getStatus());
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Alchemy\Zippy\Tests\Adapter\VersionProbe;
use Alchemy\Zippy\Tests\TestCase;
use Alchemy\Zippy\Adapter\VersionProbe\ZipExtensionVersionProbe;
use Alchemy\Zippy\Adapter\VersionProbe\VersionProbeInterface;
class ZipExtensionVersionProbeTest extends TestCase
{
/**
* @covers Alchemy\Zippy\Adapter\VersionProbe\ZipExtensionVersionProbe::getStatus
*/
public function testGetStatus()
{
$expectation = VersionProbeInterface::PROBE_OK;
if (false === class_exists('ZipArchive')) {
$expectation = VersionProbeInterface::PROBE_NOTSUPPORTED;
}
$probe = new ZipExtensionVersionProbe();
$this->assertEquals($expectation, $probe->getStatus());
}
}
Function Calls
None |
Stats
MD5 | accca1d7a04f3a55c28aa86b96ba5751 |
Eval Count | 0 |
Decode Time | 91 ms |