Initial Drupal 11 with DDEV setup
This commit is contained in:
23
vendor/consolidation/site-process/src/ProcessManagerAwareInterface.php
vendored
Normal file
23
vendor/consolidation/site-process/src/ProcessManagerAwareInterface.php
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
namespace Consolidation\SiteProcess;
|
||||
|
||||
/**
|
||||
* Inflection interface for the site alias manager.
|
||||
*/
|
||||
interface ProcessManagerAwareInterface
|
||||
{
|
||||
/**
|
||||
* @param ProcessManager $processManager
|
||||
*/
|
||||
public function setProcessManager(ProcessManager $processManager);
|
||||
|
||||
/**
|
||||
* @return ProcessManager
|
||||
*/
|
||||
public function processManager();
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public function hasProcessManager();
|
||||
}
|
||||
Reference in New Issue
Block a user