|
0
|
1 |
<?php |
|
|
2 |
|
|
|
3 |
/* |
|
|
4 |
* Copyright 2010 Johannes M. Schmitt <schmittjoh@gmail.com> |
|
|
5 |
* |
|
|
6 |
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
7 |
* you may not use this file except in compliance with the License. |
|
|
8 |
* You may obtain a copy of the License at |
|
|
9 |
* |
|
|
10 |
* http://www.apache.org/licenses/LICENSE-2.0 |
|
|
11 |
* |
|
|
12 |
* Unless required by applicable law or agreed to in writing, software |
|
|
13 |
* distributed under the License is distributed on an "AS IS" BASIS, |
|
|
14 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
|
15 |
* See the License for the specific language governing permissions and |
|
|
16 |
* limitations under the License. |
|
|
17 |
*/ |
|
|
18 |
|
|
|
19 |
namespace JMS\SecurityExtraBundle\Security\Authorization\Interception; |
|
|
20 |
|
|
|
21 |
/** |
|
|
22 |
* This class holds all data which is associated with the invocation of a |
|
|
23 |
* method. |
|
|
24 |
* |
|
|
25 |
* @author Johannes M. Schmitt <schmittjoh@gmail.com> |
|
|
26 |
*/ |
|
|
27 |
class MethodInvocation extends \ReflectionMethod |
|
|
28 |
{ |
|
|
29 |
private $arguments; |
|
|
30 |
private $object; |
|
|
31 |
|
|
|
32 |
public function __construct($class, $name, $object, array $arguments = array()) |
|
|
33 |
{ |
|
|
34 |
parent::__construct($class, $name); |
|
|
35 |
|
|
|
36 |
if (!is_object($object)) { |
|
|
37 |
throw new \InvalidArgumentException('$object must be an object.'); |
|
|
38 |
} |
|
|
39 |
|
|
|
40 |
$this->arguments = $arguments; |
|
|
41 |
$this->object = $object; |
|
|
42 |
} |
|
|
43 |
|
|
|
44 |
public function setArguments(array $arguments) |
|
|
45 |
{ |
|
|
46 |
$this->arguments = $arguments; |
|
|
47 |
} |
|
|
48 |
|
|
|
49 |
/** |
|
|
50 |
* Returns the arguments that were passed to the method |
|
|
51 |
* |
|
|
52 |
* @return array |
|
|
53 |
*/ |
|
|
54 |
public function getArguments() |
|
|
55 |
{ |
|
|
56 |
return $this->arguments; |
|
|
57 |
} |
|
|
58 |
|
|
|
59 |
/** |
|
|
60 |
* Returns the object the method was being invoked on |
|
|
61 |
* |
|
|
62 |
* @return object |
|
|
63 |
*/ |
|
|
64 |
public function getThis() |
|
|
65 |
{ |
|
|
66 |
return $this->object; |
|
|
67 |
} |
|
|
68 |
} |