芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/mockery/InvalidOrderException.php
actual; } /** * @return int */ public function getExpectedOrder() { return $this->expected; } /** * @return string|null */ public function getMethodName() { return $this->method; } /** * @return LegacyMockInterface|null */ public function getMock() { return $this->mockObject; } /** * @return string|null */ public function getMockName() { $mock = $this->getMock(); if ($mock === null) { return $mock; } return $mock->mockery_getName(); } /** * @param int $count * * @return self */ public function setActualOrder($count) { $this->actual = $count; return $this; } /** * @param int $count * * @return self */ public function setExpectedOrder($count) { $this->expected = $count; return $this; } /** * @param string $name * * @return self */ public function setMethodName($name) { $this->method = $name; return $this; } /** * @return self */ public function setMock(LegacyMockInterface $mock) { $this->mockObject = $mock; return $this; } }