This repository has been archived on 2025-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
2022-01-30 00:14:25 +00:00

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;
}
}