1<?php 2 3declare(strict_types=1); 4 5namespace Metadata\Tests\Fixtures; 6 7class TestObject 8{ 9 private $foo; 10 11 public function getFoo() 12 { 13 return $this->foo; 14 } 15 16 private function setFoo($foo) 17 { 18 $this->foo = $foo; 19 } 20} 21