1 | <?php |
||
8 | abstract class BaseContext extends RawMinkContext implements TranslatableContext |
||
9 | { |
||
10 | use \Behatch\Html; |
||
11 | use \Behatch\Asserter; |
||
12 | |||
13 | public static function getTranslationResources() |
||
17 | |||
18 | /** |
||
19 | * en |
||
20 | * @transform /^(0|[1-9]\d*)(?:st|nd|rd|th)?$/ |
||
21 | * |
||
22 | * fr |
||
23 | * @transform /^(0|[1-9]\d*)(?:ier|er|e|ème)?$/ |
||
24 | * |
||
25 | * pt |
||
26 | * @transform /^(0|[1-9]\d*)º?$/ |
||
27 | */ |
||
28 | public function castToInt($count) |
||
32 | |||
33 | protected function getMinkContext() |
||
41 | } |
||
42 |