Kolyunya/string-processor

View on GitHub
sources/Format/CaseSwitcherInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Kolyunya\StringProcessor\Format;

use Kolyunya\StringProcessor\ProcessorInterface;

/**
 * Case switchers interface.
 * @author Kolyunya
 */
interface CaseSwitcherInterface extends ProcessorInterface
{
    /**
     * Sets source case of the string.
     * @param integer $sourceCase
     */
    public function setSourceCase($sourceCase);
}