Lines Matching refs:method
37 $placeMock->method('gedcomName')->willReturn($place);
45 $individual->method('getBirthPlace')->willReturn($this->getPlaceMock(''));
46 … $individual->method('facts')->with(['IMMI', 'EMIG', 'NATU'], true)->willReturn(new Collection());
49 $census->method('censusPlace')->willReturn('Deutschland');
59 $individual->method('getBirthPlace')->willReturn($this->getPlaceMock('Australia'));
60 … $individual->method('facts')->with(['IMMI', 'EMIG', 'NATU'], true)->willReturn(new Collection());
63 $census->method('censusPlace')->willReturn('England');
73 $individual->method('getBirthPlace')->willReturn($this->getPlaceMock('London, England'));
74 … $individual->method('facts')->with(['IMMI', 'EMIG', 'NATU'], true)->willReturn(new Collection());
77 $census->method('censusPlace')->willReturn('England');
87 $place1->method('gedcomName')->willReturn('United States');
90 $fact1->method('place')->willReturn($place1);
91 $fact1->method('date')->willReturn(new Date('1855'));
94 $place2->method('gedcomName')->willReturn('Australia');
97 $fact2->method('place')->willReturn($place2);
98 $fact2->method('date')->willReturn(new Date('1865'));
101 $individual->method('getBirthPlace')->willReturn($this->getPlaceMock('London, England'));
102 … $individual->method('facts')->with(['IMMI', 'EMIG', 'NATU'], true)->willReturn(new Collection([
108 $census->method('censusPlace')->willReturn('England');
109 $census->method('censusDate')->willReturn('01 JUN 1860');