| 1 | <?php |
||
| 7 | class RecentTasks extends AbstractWidget |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * The configuration array. |
||
| 11 | * |
||
| 12 | * @var array |
||
| 13 | */ |
||
| 14 | protected $config = []; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * The number of seconds before each reload. |
||
| 18 | * |
||
| 19 | * @var int|float |
||
| 20 | */ |
||
| 21 | public $reloadTimeout = 30; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Treat this method as a controller action. |
||
| 25 | * Return view() or other content to display. |
||
| 26 | */ |
||
| 27 | public function run() |
||
| 33 | |||
| 34 | |||
| 35 | } |