Files
luos/workflow/engine/classes/FeaturesDetail.php
hjonathan 4b3cf61a79 remove comments
remove

rename

rename
2017-08-11 14:50:29 -04:00

24 lines
520 B
PHP

<?php
class FeaturesDetail
{
public $featureName;
public $description = null;
public $enabled = false;
public $workspaces = null;
/**
* This function is the constructor of the featuresDetail class
*
* @param string $featureName
* @param string $name
* @param string $description
* @return void
*/
public function __construct ($featureName, $description = '')
{
$this->featureName = $featureName;
$this->description = $description;
}
}