DiscoverableInterface.php in Plug 7
Namespace
Drupal\Component\DiscoveryFile
lib/Drupal/Component/Discovery/DiscoverableInterface.phpView source
<?php
/**
* @file
* Contains \Drupal\Component\Discovery\DiscoverableInterface.
*/
namespace Drupal\Component\Discovery;
/**
* Interface for classes providing a type of discovery.
*/
interface DiscoverableInterface {
/**
* Returns an array of discoverable items.
*
* @return array
* An array of discovered data keyed by provider.
*/
public function findAll();
}
Interfaces
Name | Description |
---|---|
DiscoverableInterface | Interface for classes providing a type of discovery. |