Delimiters.php 339 B

12345678910111213141516
  1. <?php
  2. class Delimiters
  3. {
  4. public $start = 'It worked the first time.';
  5. public function middle()
  6. {
  7. return array(
  8. array('item' => 'And it worked the second time.'),
  9. array('item' => 'As well as the third.'),
  10. );
  11. }
  12. public $final = 'Then, surprisingly, it worked the final time.';
  13. }