MAKS\AmqpAgent\Helper\ArrayProxy

A class containing methods for for manipulating and working with arrays.

Get example:
```
ArrayProxy::get($array, 'someKey', 'this is a default/fallback value to use instead if not found');
```
Set example:
```
ArrayProxy::set($array, 'someKey', $newValue);
```
Cast (array to string) example:
```
ArrayProxy::arrayToString($array);
```
Cast (array to object) example:
```
ArrayProxy::arrayToObject($array);
```
Cast (object to array) example:
```
ArrayProxy::objectToArray($object);
```