Implemented Dynamic Items for data to be sent to polled systems based on data in db, like stats/nodelists
This commit is contained in:
12
app/Classes/Dynamic.php
Normal file
12
app/Classes/Dynamic.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Classes;
|
||||
|
||||
/**
|
||||
* Dynamic files that are sent to systems during a mailer session
|
||||
*/
|
||||
abstract class Dynamic
|
||||
{
|
||||
abstract public function __toString(): string;
|
||||
abstract public function getName(): string;
|
||||
}
|
Reference in New Issue
Block a user