Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/laminas/laminas-filter/src/Word/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-filter/src/Word/CamelCaseToDash.php

<?php

declare(strict_types=1);

namespace Laminas\Filter\Word;

/**
 * @psalm-type Options = array{
 *     separator?: string,
 *     ...
 * }
 * @template TOptions of Options
 * @extends CamelCaseToSeparator<TOptions>
 */
class CamelCaseToDash extends CamelCaseToSeparator
{
    public function __construct()
    {
        parent::__construct('-');
    }
}