Hobbit.php 116 B

1234567891011
  1. <?php
  2. namespace Shire;
  3. class Hobbit
  4. {
  5. public static function add($a, $b)
  6. {
  7. return $a + $b;
  8. }
  9. }