ServiceA.php 204 B

1234567891011121314
  1. <?php
  2. class ServiceA {
  3. function __construct() {
  4. //Construction...
  5. }
  6. /**
  7. * @return string
  8. */
  9. public function getMenu()
  10. {
  11. return 'myMenuA';
  12. }
  13. }