Go\Lang\Annotation\BaseAnnotation::__construct PHP Method

__construct() final public method

Constructor
final public __construct ( array $data )
$data array Key-value for properties to be defined in this class
    public final function __construct(array $data)
    {
        foreach ($data as $key => $value) {
            $this->{$key} = $value;
        }
    }