This repository has been archived on 2022-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
opencase/src/Pluraliser.php

9 lines
160 B
PHP

<?php declare(strict_types=1);
namespace Drupal\opencase;
class Pluraliser {
public static function pluralise($text) {
return $text . "s";
}
}