rich-id/excel-generator-bundle

View on GitHub
src/Helper/AbstractHelper.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace RichId\ExcelGeneratorBundle\Helper;

/**
 * Class AbstractHelper.
 *
 * @author    Nicolas Guilloux <nicolas.guilloux@rich-id.fr>
 * @copyright 2014 - 2021 Rich ID (https://www.rich-id.fr)
 */
abstract class AbstractHelper
{
    /** @codeCoverageIgnore */
    private function __construct()
    {
        // Make it not instantiable
    }
}