Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ServiceCatalogItem.php « Common « OpenCloud « lib « php-opencloud « 3rdparty « files_external « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e20bcbc7b9fa4f3c1278e965b955f208d014212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace OpenCloud\Common;

/**
 * Holds information on a single service from the Service Catalog
 */
class ServiceCatalogItem 
{
	
    public function __construct($info = array()) 
    {
		foreach($info as $key => $value) {
			$this->$key = $value;
        }
	}

}