Code Coverage  | 
     ||||||||||
Classes and Traits  | 
      Functions and Methods  | 
      Lines  | 
     ||||||||
| Total |         | 
      0 / 0  | 
              | 
      100.00%  | 
      0 / 0  | 
      CRAP |         | 
      100.00%  | 
      0 / 0  | 
     |
| <?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(); | |
| } |