StageEvent.php
Namespace
Drupal\package_manager\EventFile
-
core/
modules/ package_manager/ src/ Event/ StageEvent.php
View source
<?php
declare (strict_types=1);
namespace Drupal\package_manager\Event;
use Drupal\package_manager\StageBase;
use Symfony\Contracts\EventDispatcher\Event;
/**
* Base class for all events related to the life cycle of the stage.
*/
abstract class StageEvent extends Event {
/**
* Constructs a StageEvent object.
*
* @param \Drupal\package_manager\StageBase $stage
* The stage which fired this event.
*/
public function __construct(StageBase $stage) {
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
StageEvent | Base class for all events related to the life cycle of the stage. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.