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 final class PhabricatorFactCursor extends PhabricatorFactDAO { protected $name; ..
Decoded Output download
<?php
final class PhabricatorFactCursor extends PhabricatorFactDAO {
protected $name;
protected $position;
protected function getConfiguration() {
return array(
self::CONFIG_COLUMN_SCHEMA => array(
'name' => 'text64',
'position' => 'text64',
),
self::CONFIG_KEY_SCHEMA => array(
'name' => array(
'columns' => array('name'),
'unique' => true,
),
),
) + parent::getConfiguration();
}
}
?>
Did this file decode correctly?
Original Code
<?php
final class PhabricatorFactCursor extends PhabricatorFactDAO {
protected $name;
protected $position;
protected function getConfiguration() {
return array(
self::CONFIG_COLUMN_SCHEMA => array(
'name' => 'text64',
'position' => 'text64',
),
self::CONFIG_KEY_SCHEMA => array(
'name' => array(
'columns' => array('name'),
'unique' => true,
),
),
) + parent::getConfiguration();
}
}
Function Calls
None |
Stats
MD5 | 3f7686ac08d96653793c684b53f168a9 |
Eval Count | 0 |
Decode Time | 74 ms |