Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: /** Chris@0: * Builder interface for invocation order matches. Chris@0: * Chris@0: * @since Interface available since Release 1.0.0 Chris@0: */ Chris@0: interface PHPUnit_Framework_MockObject_Builder_Match extends PHPUnit_Framework_MockObject_Builder_Stub Chris@0: { Chris@0: /** Chris@0: * Defines the expectation which must occur before the current is valid. Chris@0: * Chris@0: * @param string $id The identification of the expectation that should Chris@0: * occur before this one. Chris@0: * @return PHPUnit_Framework_MockObject_Builder_Stub Chris@0: */ Chris@0: public function after($id); Chris@0: }