We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 14 | class Argument implements \ArrayAccess, \Countable |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | private $arguments; |
||
| 20 | |||
| 21 | 29 | public function __construct(array $arguments = null) |
|
| 25 | |||
| 26 | 1 | public function offsetExists($offset) |
|
| 30 | |||
| 31 | 3 | public function offsetGet($offset) |
|
| 35 | |||
| 36 | 1 | public function offsetSet($offset, $value) |
|
| 40 | |||
| 41 | 1 | public function offsetUnset($offset) |
|
| 45 | |||
| 46 | 7 | public function getRawArguments() |
|
| 50 | |||
| 51 | 1 | public function count() |
|
| 55 | } |
||
| 56 |