Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / vendor / drush / drush / src / Boot / AutoloaderAwareInterface.php
1 <?php
2 namespace Drush\Boot;
3
4 interface AutoloaderAwareInterface
5 {
6     public function setAutoloader($loader);
7
8     public function autoloader();
9
10     public function hasAutoloader();
11 }