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