MynetworkController.php 305B

123456789101112131415161718192021
  1. <?php
  2. namespace Muzich\MynetworkBundle\Controller;
  3. use Muzich\CoreBundle\lib\Controller;
  4. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  5. class MynetworkController extends Controller
  6. {
  7. /**
  8. *
  9. * @Template()
  10. */
  11. public function indexAction()
  12. {
  13. return array();
  14. }
  15. }