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 PhabricatorChartFunctionLabel extends Phobject { private $key; p..

Decoded Output download

<?php

final class PhabricatorChartFunctionLabel
  extends Phobject {

  private $key;
  private $name;
  private $color;
  private $icon;
  private $fillColor;

  public function setKey($key) {
    $this->key = $key;
    return $this;
  }

  public function getKey() {
    return $this->key;
  }

  public function setName($name) {
    $this->name = $name;
    return $this;
  }

  public function getName() {
    return $this->name;
  }

  public function setColor($color) {
    $this->color = $color;
    return $this;
  }

  public function getColor() {
    return $this->color;
  }

  public function setIcon($icon) {
    $this->icon = $icon;
    return $this;
  }

  public function getIcon() {
    return $this->icon;
  }

  public function setFillColor($fill_color) {
    $this->fillColor = $fill_color;
    return $this;
  }

  public function getFillColor() {
    return $this->fillColor;
  }

  public function toWireFormat() {
    return array(
      'key' => $this->getKey(),
      'name' => $this->getName(),
      'color' => $this->getColor(),
      'icon' => $this->getIcon(),
      'fillColor' => $this->getFillColor(),
    );
  }

}
 ?>

Did this file decode correctly?

Original Code

<?php

final class PhabricatorChartFunctionLabel
  extends Phobject {

  private $key;
  private $name;
  private $color;
  private $icon;
  private $fillColor;

  public function setKey($key) {
    $this->key = $key;
    return $this;
  }

  public function getKey() {
    return $this->key;
  }

  public function setName($name) {
    $this->name = $name;
    return $this;
  }

  public function getName() {
    return $this->name;
  }

  public function setColor($color) {
    $this->color = $color;
    return $this;
  }

  public function getColor() {
    return $this->color;
  }

  public function setIcon($icon) {
    $this->icon = $icon;
    return $this;
  }

  public function getIcon() {
    return $this->icon;
  }

  public function setFillColor($fill_color) {
    $this->fillColor = $fill_color;
    return $this;
  }

  public function getFillColor() {
    return $this->fillColor;
  }

  public function toWireFormat() {
    return array(
      'key' => $this->getKey(),
      'name' => $this->getName(),
      'color' => $this->getColor(),
      'icon' => $this->getIcon(),
      'fillColor' => $this->getFillColor(),
    );
  }

}

Function Calls

None

Variables

None

Stats

MD5 f2eba4966e030a7296df52da997a2599
Eval Count 0
Decode Time 97 ms