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 PhabricatorDashboardPanelRef extends Phobject { private $panelPHID..

Decoded Output download

<?php

final class PhabricatorDashboardPanelRef
  extends Phobject {

  private $panelPHID;
  private $panelKey;
  private $columnKey;

  public function setPanelPHID($panel_phid) {
    $this->panelPHID = $panel_phid;
    return $this;
  }

  public function getPanelPHID() {
    return $this->panelPHID;
  }

  public function setColumnKey($column_key) {
    $this->columnKey = $column_key;
    return $this;
  }

  public function getColumnKey() {
    return $this->columnKey;
  }

  public function setPanelKey($panel_key) {
    $this->panelKey = $panel_key;
    return $this;
  }

  public function getPanelKey() {
    return $this->panelKey;
  }

  public function toDictionary() {
    return array(
      'panelKey' => $this->getPanelKey(),
      'panelPHID' => $this->getPanelPHID(),
      'columnKey' => $this->getColumnKey(),
    );
  }

}
 ?>

Did this file decode correctly?

Original Code

<?php

final class PhabricatorDashboardPanelRef
  extends Phobject {

  private $panelPHID;
  private $panelKey;
  private $columnKey;

  public function setPanelPHID($panel_phid) {
    $this->panelPHID = $panel_phid;
    return $this;
  }

  public function getPanelPHID() {
    return $this->panelPHID;
  }

  public function setColumnKey($column_key) {
    $this->columnKey = $column_key;
    return $this;
  }

  public function getColumnKey() {
    return $this->columnKey;
  }

  public function setPanelKey($panel_key) {
    $this->panelKey = $panel_key;
    return $this;
  }

  public function getPanelKey() {
    return $this->panelKey;
  }

  public function toDictionary() {
    return array(
      'panelKey' => $this->getPanelKey(),
      'panelPHID' => $this->getPanelPHID(),
      'columnKey' => $this->getColumnKey(),
    );
  }

}

Function Calls

None

Variables

None

Stats

MD5 3569d88e2629b6ebf4ea4aded4862d0b
Eval Count 0
Decode Time 104 ms