Esempio n. 1
0
 public function getInformation($greeting = "Hello")
 {
     $output = $greeting;
     $output .= ", there are ";
     $output .= $this->clothes->getCleanClothes();
     $output .= " clean closes and ";
     $output .= $this->clothes->getDirtyClothes();
     $output .= " dirty clothes in the laundry.";
     return $output;
 }