Hobbit.php 116 B

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