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 namespace Drupal\aggregator; /** * Provides an interface defining an aggregator i..

Decoded Output download

<?php

namespace Drupalggregator;

/**
 * Provides an interface defining an aggregator items importer.
 */
interface ItemsImporterInterface {

  /**
   * Updates the feed items by triggering the import process.
   *
   * This process can be slow and lengthy because it relies on network
   * operations. Calling it on performance critical paths should be avoided.
   *
   * @param \Drupalggregator\FeedInterface $feed
   *   The feed which items should be refreshed.
   *
   * @return bool
   *   TRUE if there is new content for the feed FALSE otherwise.
   */
  public function refresh(FeedInterface $feed);

  /**
   * Deletes all imported items from a feed.
   *
   * @param \Drupalggregator\FeedInterface $feed
   *   The feed that associated items should be deleted from.
   */
  public function delete(FeedInterface $feed);

}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Drupal\aggregator;

/**
 * Provides an interface defining an aggregator items importer.
 */
interface ItemsImporterInterface {

  /**
   * Updates the feed items by triggering the import process.
   *
   * This process can be slow and lengthy because it relies on network
   * operations. Calling it on performance critical paths should be avoided.
   *
   * @param \Drupal\aggregator\FeedInterface $feed
   *   The feed which items should be refreshed.
   *
   * @return bool
   *   TRUE if there is new content for the feed FALSE otherwise.
   */
  public function refresh(FeedInterface $feed);

  /**
   * Deletes all imported items from a feed.
   *
   * @param \Drupal\aggregator\FeedInterface $feed
   *   The feed that associated items should be deleted from.
   */
  public function delete(FeedInterface $feed);

}

Function Calls

None

Variables

None

Stats

MD5 f3221984320a57489b1d4f42b16c6407
Eval Count 0
Decode Time 85 ms