Chris@14: Chris@14: * Chris@14: * For the full copyright and license information, please view the LICENSE Chris@14: * file that was distributed with this source code. Chris@14: */ Chris@14: namespace PHPUnit\Framework\MockObject\Builder; Chris@14: Chris@14: /** Chris@14: * Builder interface for invocation order matches. Chris@14: */ Chris@14: interface Match extends Stub Chris@14: { Chris@14: /** Chris@14: * Defines the expectation which must occur before the current is valid. Chris@14: * Chris@14: * @param string $id The identification of the expectation that should Chris@14: * occur before this one. Chris@14: * Chris@14: * @return Stub Chris@14: */ Chris@14: public function after($id); Chris@14: }