1: <?php
2:
3: namespace Mockery;
4:
5: class MethodCall
6: {
7: private $method;
8: private $args;
9:
10: public function __construct($method, $args)
11: {
12: $this->method = $method;
13: $this->args = $args;
14: }
15:
16: public function getMethod()
17: {
18: return $this->method;
19: }
20:
21: public function getArgs()
22: {
23: return $this->args;
24: }
25: }
26: