You are here

public function FileSavedEvent::__construct in Tome 8

Constructs a FileSavedEvent object.

Parameters

string $path: A path.

File

modules/tome_static/src/Event/FileSavedEvent.php, line 25

Class

FileSavedEvent
Allows modules to react to a file save.

Namespace

Drupal\tome_static\Event

Code

public function __construct($path) {
  $this->path = $path;
}