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 PhabricatorPasteSnippet extends Phobject { const FULL = 'full'; co..

Decoded Output download

<?php

final class PhabricatorPasteSnippet extends Phobject {

  const FULL = 'full';
  const FIRST_LINES = 'first_lines';
  const FIRST_BYTES = 'first_bytes';

  private $content;
  private $type;
  private $contentLineCount;

  public function __construct($content, $type, $content_line_count) {
    $this->content = $content;
    $this->type = $type;
    $this->contentLineCount = $content_line_count;
  }

  public function getContent() {
    return $this->content;
  }

  public function getType() {
    return $this->type;
  }

  public function getContentLineCount() {
    return $this->contentLineCount;
  }
}
 ?>

Did this file decode correctly?

Original Code

<?php

final class PhabricatorPasteSnippet extends Phobject {

  const FULL = 'full';
  const FIRST_LINES = 'first_lines';
  const FIRST_BYTES = 'first_bytes';

  private $content;
  private $type;
  private $contentLineCount;

  public function __construct($content, $type, $content_line_count) {
    $this->content = $content;
    $this->type = $type;
    $this->contentLineCount = $content_line_count;
  }

  public function getContent() {
    return $this->content;
  }

  public function getType() {
    return $this->type;
  }

  public function getContentLineCount() {
    return $this->contentLineCount;
  }
}

Function Calls

None

Variables

None

Stats

MD5 34fa0241196f1c57d6d37cb67304abe2
Eval Count 0
Decode Time 102 ms