phpvms/resources/stubs/widgets/widget_plain.stub
2018-03-19 20:50:40 -05:00

22 lines
313 B
Plaintext

<?php
namespace {{namespace}};
use App\Interfaces\Widget;
/**
* Class {{class}}
* @package {{namespace}}
*/
class {{class}} extends Widget
{
/**
* Treat this method as a controller action.
* Return view() or other content to display.
*/
public function run()
{
//
}
}