You are here

ObserverInterface.php in Changed Fields API 8.2

Same filename and directory in other branches
  1. 8.3 src/ObserverInterface.php
  2. 8 src/ObserverInterface.php

File

src/ObserverInterface.php
View source
<?php

/**
 * @file
 * Contains SubjectInterface.php.
 */
namespace Drupal\changed_fields;

use SplObserver;

/**
 * Interface ObserverInterface.
 */
interface ObserverInterface extends SplObserver {

  /**
   * Returns associative array of node types with their fields for watching.
   *
   * @return array
   */
  public function getInfo();

}

Interfaces

Namesort descending Description
ObserverInterface Interface ObserverInterface.