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 abstract class PhabricatorDashboardPanelPropertyTransaction extends PhabricatorDa..

Decoded Output download

<?php

abstract class PhabricatorDashboardPanelPropertyTransaction
  extends PhabricatorDashboardPanelTransactionType {

  abstract protected function getPropertyKey();

  public function generateOldValue($object) {
    $property_key = $this->getPropertyKey();
    return $object->getProperty($property_key);
  }

  public function applyInternalEffects($object, $value) {
    $property_key = $this->getPropertyKey();
    $object->setProperty($property_key, $value);
  }

}
 ?>

Did this file decode correctly?

Original Code

<?php

abstract class PhabricatorDashboardPanelPropertyTransaction
  extends PhabricatorDashboardPanelTransactionType {

  abstract protected function getPropertyKey();

  public function generateOldValue($object) {
    $property_key = $this->getPropertyKey();
    return $object->getProperty($property_key);
  }

  public function applyInternalEffects($object, $value) {
    $property_key = $this->getPropertyKey();
    $object->setProperty($property_key, $value);
  }

}

Function Calls

None

Variables

None

Stats

MD5 5700b154333f58b7b5dce0307248f2c0
Eval Count 0
Decode Time 90 ms