mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-26 03:30:32 +08:00
15 lines
224 B
PHP
15 lines
224 B
PHP
<?= "<?php\n" ?>
|
|
|
|
namespace <?= substr($generator->namespace, 0, -1) ?>;
|
|
|
|
/**
|
|
* This is just an example.
|
|
*/
|
|
class AutoloadExample extends \yii\base\Widget
|
|
{
|
|
public function run()
|
|
{
|
|
return "Hello!";
|
|
}
|
|
}
|