TASK: Add missing docs

This commit is contained in:
Daniel Siepmann 2017-04-25 16:35:54 +02:00
parent 27997c8445
commit 7f7a7aa38d
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
3 changed files with 14 additions and 0 deletions

View file

@ -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 = [];
/**

View file

@ -100,6 +100,11 @@ class Options
return $option;
}
/**
* Get the configured features.
*
* @return array
*/
public static function getFeaturesConfiguration()
{
$option = [];