19 lines
266 B
PHP
19 lines
266 B
PHP
<?php
|
|
|
|
namespace Notes\Cronard\Annotation\Method;
|
|
|
|
class Cronard implements \Notes\Annotation {
|
|
|
|
/**
|
|
* @required
|
|
*/
|
|
public string $cron;
|
|
|
|
public string $method;
|
|
|
|
public function __construct($cron)
|
|
{
|
|
$this->cron = $cron;
|
|
}
|
|
}
|