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

Decoded Output download

<?php

final class PhabricatorIconSetIcon
  extends Phobject {

  private $key;
  private $icon;
  private $label;
  private $isDisabled;

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

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

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

  public function getIcon() {
    if ($this->icon === null) {
      return $this->getKey();
    }
    return $this->icon;
  }

  public function setIsDisabled($is_disabled) {
    $this->isDisabled = $is_disabled;
    return $this;
  }

  public function getIsDisabled() {
    return $this->isDisabled;
  }

  public function setLabel($label) {
    $this->label = $label;
    return $this;
  }

  public function getLabel() {
    return $this->label;
  }

}
 ?>

Did this file decode correctly?

Original Code

<?php

final class PhabricatorIconSetIcon
  extends Phobject {

  private $key;
  private $icon;
  private $label;
  private $isDisabled;

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

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

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

  public function getIcon() {
    if ($this->icon === null) {
      return $this->getKey();
    }
    return $this->icon;
  }

  public function setIsDisabled($is_disabled) {
    $this->isDisabled = $is_disabled;
    return $this;
  }

  public function getIsDisabled() {
    return $this->isDisabled;
  }

  public function setLabel($label) {
    $this->label = $label;
    return $this;
  }

  public function getLabel() {
    return $this->label;
  }

}

Function Calls

None

Variables

None

Stats

MD5 6aba659610ee40148362775d7a93bd84
Eval Count 0
Decode Time 76 ms