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 HarbormasterMessageType extends Phobject { const MESSAGE_PASS = 'pas..

Decoded Output download

<?php

final class HarbormasterMessageType extends Phobject {

  const MESSAGE_PASS = 'pass';
  const MESSAGE_FAIL = 'fail';
  const MESSAGE_WORK = 'work';

  const BUILDABLE_BUILD = 'build';
  const BUILDABLE_CONTAINER = 'container';

  public static function getAllMessages() {
    return array_keys(self::getMessageSpecifications());
  }

  public static function getMessageDescription($message) {
    $spec = self::getMessageSpecification($message);
    if (!$spec) {
      return null;
    }
    return idx($spec, 'description');
  }

  private static function getMessageSpecification($message) {
    $specs = self::getMessageSpecifications();
    return idx($specs, $message);
  }

  private static function getMessageSpecifications() {
    return array(
      self::MESSAGE_PASS => array(
        'description' => pht(
          'Report that the target is complete, and the target has passed.'),
      ),
      self::MESSAGE_FAIL => array(
        'description' => pht(
          'Report that the target is complete, and the target has failed.'),
      ),
      self::MESSAGE_WORK => array(
        'description' => pht(
          'Report that work on the target is ongoing. This message can be '.
          'used to report partial results during a build.'),
      ),
    );
  }

}
 ?>

Did this file decode correctly?

Original Code

<?php

final class HarbormasterMessageType extends Phobject {

  const MESSAGE_PASS = 'pass';
  const MESSAGE_FAIL = 'fail';
  const MESSAGE_WORK = 'work';

  const BUILDABLE_BUILD = 'build';
  const BUILDABLE_CONTAINER = 'container';

  public static function getAllMessages() {
    return array_keys(self::getMessageSpecifications());
  }

  public static function getMessageDescription($message) {
    $spec = self::getMessageSpecification($message);
    if (!$spec) {
      return null;
    }
    return idx($spec, 'description');
  }

  private static function getMessageSpecification($message) {
    $specs = self::getMessageSpecifications();
    return idx($specs, $message);
  }

  private static function getMessageSpecifications() {
    return array(
      self::MESSAGE_PASS => array(
        'description' => pht(
          'Report that the target is complete, and the target has passed.'),
      ),
      self::MESSAGE_FAIL => array(
        'description' => pht(
          'Report that the target is complete, and the target has failed.'),
      ),
      self::MESSAGE_WORK => array(
        'description' => pht(
          'Report that work on the target is ongoing. This message can be '.
          'used to report partial results during a build.'),
      ),
    );
  }

}

Function Calls

None

Variables

None

Stats

MD5 3d1820a2f70fbd6791d44136edd8e0cb
Eval Count 0
Decode Time 96 ms