TestObject.php 224B

123456789101112131415161718
  1. <?php
  2. namespace Metadata\Tests\Fixtures;
  3. class TestObject
  4. {
  5. private $foo;
  6. public function getFoo()
  7. {
  8. return $this->foo;
  9. }
  10. private function setFoo($foo)
  11. {
  12. $this->foo = $foo;
  13. }
  14. }