sixty-nine/php-cloud-lib

View on GitHub
src/SixtyNine/Cloud/Filters/FilterInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SixtyNine\Cloud\Filters;

interface FilterInterface
{
    /**
     * @param string $word The word to filter
     * @return bool
     */
    function keepWord($word);

    /**
     * @param string $word
     * @return string
     */
    function filterWord($word);
}