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 PhutilCalendarUserNode extends PhutilCalendarNode { private $name; ..

Decoded Output download

<?php

final class PhutilCalendarUserNode extends PhutilCalendarNode {

  private $name;
  private $uri;
  private $status;

  const STATUS_INVITED = 'invited';
  const STATUS_ACCEPTED = 'accepted';
  const STATUS_DECLINED = 'declined';

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

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

  public function setURI($uri) {
    $this->uri = $uri;
    return $this;
  }

  public function getURI() {
    return $this->uri;
  }

  public function setStatus($status) {
    $this->status = $status;
    return $this;
  }

  public function getStatus() {
    return $this->status;
  }

}
 ?>

Did this file decode correctly?

Original Code

<?php

final class PhutilCalendarUserNode extends PhutilCalendarNode {

  private $name;
  private $uri;
  private $status;

  const STATUS_INVITED = 'invited';
  const STATUS_ACCEPTED = 'accepted';
  const STATUS_DECLINED = 'declined';

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

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

  public function setURI($uri) {
    $this->uri = $uri;
    return $this;
  }

  public function getURI() {
    return $this->uri;
  }

  public function setStatus($status) {
    $this->status = $status;
    return $this;
  }

  public function getStatus() {
    return $this->status;
  }

}

Function Calls

None

Variables

None

Stats

MD5 06f9288496f37cb1bffa7a69f4445639
Eval Count 0
Decode Time 107 ms