12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
-
-
-
-
-
-
- class Yay_SimpleDescription implements Yay_Description
- {
-
-
-
- private $_text = '';
-
-
-
- public function appendDescription(Yay_Description $description)
- {
- $this->_text .= $description->toString();
- }
-
-
-
- public function appendText($text)
- {
- $this->_text .= $text;
- }
-
-
-
- public function toString()
- {
- return $this->_text;
- }
-
- }
|