Forgot to add pluraliser class (new file)

This commit is contained in:
naomi 2022-05-11 13:49:15 +01:00
parent 6dcd379535
commit cfe0b820f5
1 changed files with 9 additions and 0 deletions

9
src/Pluraliser.php Normal file
View File

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