1: <?php
2:
3: namespace OpenCloud\Common;
4:
5: /**
6: * Holds information on a single service from the Service Catalog
7: */
8: class ServiceCatalogItem
9: {
10:
11: public function __construct($info = array())
12: {
13: foreach($info as $key => $value) {
14: $this->$key = $value;
15: }
16: }
17:
18: }
19: