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 class Stripe_Event extends Stripe_ApiResource { /** * @param string $id The ID..

Decoded Output download

<?php

class Stripe_Event extends Stripe_ApiResource
{
  /**
   * @param string $id The ID of the event to retrieve.
   * @param string|null $apiKey
   *
   * @return Stripe_Event
   */
  public static function retrieve($id, $apiKey=null)
  {
    $class = get_class();
    return self::_scopedRetrieve($class, $id, $apiKey);
  }

  /**
   * @param array|null $params
   * @param string|null $apiKey
   *
   * @return array An array of Stripe_Events.
   */
  public static function all($params=null, $apiKey=null)
  {
    $class = get_class();
    return self::_scopedAll($class, $params, $apiKey);
  }
}
 ?>

Did this file decode correctly?

Original Code

<?php

class Stripe_Event extends Stripe_ApiResource
{
  /**
   * @param string $id The ID of the event to retrieve.
   * @param string|null $apiKey
   *
   * @return Stripe_Event
   */
  public static function retrieve($id, $apiKey=null)
  {
    $class = get_class();
    return self::_scopedRetrieve($class, $id, $apiKey);
  }

  /**
   * @param array|null $params
   * @param string|null $apiKey
   *
   * @return array An array of Stripe_Events.
   */
  public static function all($params=null, $apiKey=null)
  {
    $class = get_class();
    return self::_scopedAll($class, $params, $apiKey);
  }
}

Function Calls

None

Variables

None

Stats

MD5 4d123e2375b6cf20c93c2343cb3a127d
Eval Count 0
Decode Time 83 ms