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 /** * @link https://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Soft..
Decoded Output download
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yiiunitramework\mutex;
use yii\mutex\PgsqlMutex;
use yiiunitramework\db\DatabaseTestCase;
/**
* Class PgsqlMutexTest.
*
* @group mutex
* @group db
* @group pgsql
*/
class PgsqlMutexTest extends DatabaseTestCase
{
use MutexTestTrait;
protected $driverName = 'pgsql';
/**
* @return PgsqlMutex
* @throws \yiiase\InvalidConfigException
*/
protected function createMutex()
{
return \Yii::createObject([
'class' => PgsqlMutex::className(),
'db' => $this->getConnection(),
]);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yiiunit\framework\mutex;
use yii\mutex\PgsqlMutex;
use yiiunit\framework\db\DatabaseTestCase;
/**
* Class PgsqlMutexTest.
*
* @group mutex
* @group db
* @group pgsql
*/
class PgsqlMutexTest extends DatabaseTestCase
{
use MutexTestTrait;
protected $driverName = 'pgsql';
/**
* @return PgsqlMutex
* @throws \yii\base\InvalidConfigException
*/
protected function createMutex()
{
return \Yii::createObject([
'class' => PgsqlMutex::className(),
'db' => $this->getConnection(),
]);
}
}
Function Calls
None |
Stats
MD5 | 00aba9284401ec4d586b006a0bdef9d7 |
Eval Count | 0 |
Decode Time | 107 ms |