1: <?php
2:
3: /**
4: * Mockery
5: *
6: * LICENSE
7: *
8: * This source file is subject to the new BSD license that is bundled
9: * with this package in the file LICENSE.txt.
10: * It is also available through the world-wide-web at this URL:
11: * http://github.com/padraic/mockery/blob/master/LICENSE
12: * If you did not receive a copy of the license and are unable to
13: * obtain it through the world-wide-web, please send an email
14: * to padraic@php.net so we can send you a copy immediately.
15: *
16: * @category Mockery
17: * @package Mockery
18: * @copyright Copyright (c) 2010-2014 Pádraic Brady (http://blog.astrumfutura.com)
19: * @license http://github.com/padraic/mockery/blob/master/LICENSE New BSD License
20: */
21: namespace Mockery;
22:
23:
24: interface ExpectationInterface
25: {
26: /**
27: * @return int
28: */
29: public function getOrderNumber();
30:
31: /**
32: * @return MockInterface
33: */
34: public function getMock();
35:
36: /**
37: * @return self
38: */
39: public function andReturn();
40: }
41: