123456789101112131415161718192021 |
- <?php
-
- namespace Muzich\MynetworkBundle\Controller;
-
- use Muzich\CoreBundle\lib\Controller;
- use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
-
-
- class MynetworkController extends Controller
- {
-
- /**
- *
- * @Template()
- */
- public function indexAction()
- {
- return array();
- }
-
- }
|