Talesoft/tale-inflector

View on GitHub
src/Inflector/Strategy/DashStrategy.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
declare(strict_types=1);

namespace Tale\Inflector\Strategy;

class DashStrategy extends RejoinStrategy
{
    protected const DELIMITER = '-';
}