Lauren gets a new job

<?php

  include('Wife.php');
  include('Husband.php');

  $currentJob = Wife::getCurrentJob();
  $newJob = Wife::getNewJob();
  if ($newJob->getWage() > $currentJob->getWage()) {
      /**
      * Lauren got a new job so Joe gets lots of fun new gadgets
      */
      Husband::getNewGadgets();
  }

?>

2 thoughts on “Lauren gets a new job

  1. Uh…

    include(‘Parents.php’);

    class Mark extends Parents {
    //Eastern doesn’t pay enough
    Mark() {
    return poor;
    }
    }

    Buy me something pretty!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.