This commit is contained in:
2019-12-23 15:59:40 +03:00
commit 56b42000c0
3 changed files with 66 additions and 0 deletions

14
AutoloadExample.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
namespace dominion\cron;
/**
* This is just an example.
*/
class AutoloadExample extends \yii\base\Widget
{
public function run()
{
return "Hello!";
}
}