Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-driver / src / Drupal / Driver / SubDriverFinderInterface.php
1 <?php
2
3 namespace Drupal\Driver;
4
5 /**
6  * Interface for discovery of sub-drivers.
7  */
8 interface SubDriverFinderInterface {
9
10   /**
11    * Returns an array of paths in which to look for Drupal sub-drivers.
12    *
13    * @return array
14    *   An array of paths in which to find sub-drivers.
15    */
16   public function getSubDriverPaths();
17
18 }