ServiceB.php 205 B

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