blob: 3901d463e249b8a3db497ec4f3e1b014b400193d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
namespace gipfl\SimpleDaemon;
use gipfl\SystemD\NotifySystemD;
interface SystemdAwareTask
{
/**
* @param NotifySystemD $systemd
*/
public function setSystemd(NotifySystemD $systemd);
}
|