rich-id/excel-generator-bundle

View on GitHub
src/ConfigurationExtractor/Model/GeneratedCellConfiguration.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace RichId\ExcelGeneratorBundle\ConfigurationExtractor\Model;

/**
 * Class GeneratedCellConfiguration.
 *
 * @author     Nicolas Guilloux <nicolas.guilloux@rich-id.fr>
 * @copyright  2014 - 2021 Rich ID (https://www.rich-id.fr)
 *
 * Use to dynamically insert a row
 */
class GeneratedCellConfiguration extends CellConfiguration
{
    /** @var mixed */
    public $value;

    /** @return mixed */
    public function getValue()
    {
        return $this->value;
    }
}