trait.colour.php

trait.colour.php

  1. <?php
  2.  
  3. trait Colour
  4. {
  5.  
  6. function getColour()
  7. {
  8. return "red";
  9. }
  10. }
  11.  
  12. ?>
Comments are closed.