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 ManiphestTaskAssigneeHeraldField extends ManiphestTaskHeraldField { ..
Decoded Output download
<?php
final class ManiphestTaskAssigneeHeraldField
extends ManiphestTaskHeraldField {
const FIELDCONST = 'maniphest.task.assignee';
public function getHeraldFieldName() {
return pht('Assignee');
}
public function getHeraldFieldValue($object) {
return $object->getOwnerPHID();
}
protected function getHeraldFieldStandardType() {
return self::STANDARD_PHID_NULLABLE;
}
protected function getDatasource() {
return new PhabricatorPeopleDatasource();
}
}
?>
Did this file decode correctly?
Original Code
<?php
final class ManiphestTaskAssigneeHeraldField
extends ManiphestTaskHeraldField {
const FIELDCONST = 'maniphest.task.assignee';
public function getHeraldFieldName() {
return pht('Assignee');
}
public function getHeraldFieldValue($object) {
return $object->getOwnerPHID();
}
protected function getHeraldFieldStandardType() {
return self::STANDARD_PHID_NULLABLE;
}
protected function getDatasource() {
return new PhabricatorPeopleDatasource();
}
}
Function Calls
None |
Stats
MD5 | 243b400f888f1c7f36db709220f86141 |
Eval Count | 0 |
Decode Time | 134 ms |