diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:23:16 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:23:16 +0000 |
commit | 3e97c51418e6d27e9a81906f347fcb7c78e27d4f (patch) | |
tree | ee596ce1bc9840661386f96f9b8d1f919a106317 /vendor/gipfl/simple-daemon/src/SystemdAwareTask.php | |
parent | Initial commit. (diff) | |
download | icingaweb2-module-incubator-3e97c51418e6d27e9a81906f347fcb7c78e27d4f.tar.xz icingaweb2-module-incubator-3e97c51418e6d27e9a81906f347fcb7c78e27d4f.zip |
Adding upstream version 0.20.0.upstream/0.20.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/gipfl/simple-daemon/src/SystemdAwareTask.php')
-rw-r--r-- | vendor/gipfl/simple-daemon/src/SystemdAwareTask.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/gipfl/simple-daemon/src/SystemdAwareTask.php b/vendor/gipfl/simple-daemon/src/SystemdAwareTask.php new file mode 100644 index 0000000..3901d46 --- /dev/null +++ b/vendor/gipfl/simple-daemon/src/SystemdAwareTask.php @@ -0,0 +1,13 @@ +<?php + +namespace gipfl\SimpleDaemon; + +use gipfl\SystemD\NotifySystemD; + +interface SystemdAwareTask +{ + /** + * @param NotifySystemD $systemd + */ + public function setSystemd(NotifySystemD $systemd); +} |