Skip to content
Snippets Groups Projects
Unverified Commit 7f7a7aa3 authored by Daniel Siepmann's avatar Daniel Siepmann
Browse files

TASK: Add missing docs

parent 27997c84
Branches
1 merge request!78Feature/72 refactor sniff architecture
......@@ -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 = [];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment