Forgot to add pluraliser class (new file)
This commit is contained in:
parent
6dcd379535
commit
cfe0b820f5
9
src/Pluraliser.php
Normal file
9
src/Pluraliser.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php declare(strict_types=1);
|
||||
|
||||
namespace Drupal\opencase;
|
||||
|
||||
class Pluraliser {
|
||||
public static function pluralise($text) {
|
||||
return $text . "s";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user