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 Sof..
Decoded Output download
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
use yiiase\InvalidConfigException;
use yii\db\Migration;
use yii
bac\DbManager;
/**
* Updates indexes without a prefix.
*
* @see https://github.com/yiisoft/yii2/pull/15548
*
* @author Sergey Gonimar <[email protected]>
* @since 2.0.16
*/
class m180523_151638_rbac_updates_indexes_without_prefix extends Migration
{
/**
* @throws yiiase\InvalidConfigException
* @return DbManager
*/
protected function getAuthManager()
{
$authManager = Yii::$app->getAuthManager();
if (!$authManager instanceof DbManager) {
throw new InvalidConfigException('You should configure "authManager" component to use database before executing this migration.');
}
return $authManager;
}
/**
* {@inheritdoc}
*/
public function up()
{
$authManager = $this->getAuthManager();
$this->db = $authManager->db;
$this->dropIndex('auth_assignment_user_id_idx', $authManager->assignmentTable);
$this->createIndex('{{%idx-auth_assignment-user_id}}', $authManager->assignmentTable, 'user_id');
$this->dropIndex('idx-auth_item-type', $authManager->itemTable);
$this->createIndex('{{%idx-auth_item-type}}', $authManager->itemTable, 'type');
}
/**
* {@inheritdoc}
*/
public function down()
{
$authManager = $this->getAuthManager();
$this->db = $authManager->db;
$this->dropIndex('{{%idx-auth_assignment-user_id}}', $authManager->assignmentTable);
$this->createIndex('auth_assignment_user_id_idx', $authManager->assignmentTable, 'user_id');
$this->dropIndex('{{%idx-auth_item-type}}', $authManager->itemTable);
$this->createIndex('idx-auth_item-type', $authManager->itemTable, 'type');
}
}
?>
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/
*/
use yii\base\InvalidConfigException;
use yii\db\Migration;
use yii\rbac\DbManager;
/**
* Updates indexes without a prefix.
*
* @see https://github.com/yiisoft/yii2/pull/15548
*
* @author Sergey Gonimar <[email protected]>
* @since 2.0.16
*/
class m180523_151638_rbac_updates_indexes_without_prefix extends Migration
{
/**
* @throws yii\base\InvalidConfigException
* @return DbManager
*/
protected function getAuthManager()
{
$authManager = Yii::$app->getAuthManager();
if (!$authManager instanceof DbManager) {
throw new InvalidConfigException('You should configure "authManager" component to use database before executing this migration.');
}
return $authManager;
}
/**
* {@inheritdoc}
*/
public function up()
{
$authManager = $this->getAuthManager();
$this->db = $authManager->db;
$this->dropIndex('auth_assignment_user_id_idx', $authManager->assignmentTable);
$this->createIndex('{{%idx-auth_assignment-user_id}}', $authManager->assignmentTable, 'user_id');
$this->dropIndex('idx-auth_item-type', $authManager->itemTable);
$this->createIndex('{{%idx-auth_item-type}}', $authManager->itemTable, 'type');
}
/**
* {@inheritdoc}
*/
public function down()
{
$authManager = $this->getAuthManager();
$this->db = $authManager->db;
$this->dropIndex('{{%idx-auth_assignment-user_id}}', $authManager->assignmentTable);
$this->createIndex('auth_assignment_user_id_idx', $authManager->assignmentTable, 'user_id');
$this->dropIndex('{{%idx-auth_item-type}}', $authManager->itemTable);
$this->createIndex('idx-auth_item-type', $authManager->itemTable, 'type');
}
}
Function Calls
None |
Stats
MD5 | 4dda43adb55f52a28337728963deebcd |
Eval Count | 0 |
Decode Time | 102 ms |