TASK: Add missing docs
This commit is contained in:
parent
27997c8445
commit
7f7a7aa38d
3 changed files with 14 additions and 0 deletions
|
@ -28,7 +28,16 @@ use Typo3Update\Options;
|
|||
*/
|
||||
class Features implements \Iterator
|
||||
{
|
||||
/**
|
||||
* Internal array position for \Iterator implementation.
|
||||
* @var int
|
||||
*/
|
||||
protected $index = 0;
|
||||
|
||||
/**
|
||||
* Internal array
|
||||
* @var array
|
||||
*/
|
||||
protected $features = [];
|
||||
|
||||
/**
|
||||
|
|
|
@ -100,6 +100,11 @@ class Options
|
|||
return $option;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the configured features.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function getFeaturesConfiguration()
|
||||
{
|
||||
$option = [];
|
||||
|
|
Loading…
Reference in a new issue