Files
luos/workflow/engine/classes/FeaturesDetail.php

24 lines
520 B
PHP
Raw Normal View History

2017-08-11 11:10:27 -04:00
<?php
2017-08-11 14:39:50 -04:00
class FeaturesDetail
2017-08-11 11:10:27 -04:00
{
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;
}
}