1 | <?php |
||
18 | class LeaveAlone extends FormatterBase |
||
19 | { |
||
20 | |||
21 | /** |
||
22 | * Removes the emojis from the inputted string |
||
23 | * |
||
24 | * @param string|int|float $input anything easily cast into a string |
||
25 | * @return string |
||
26 | * @throws InvalidDataTypeException if $input is not a string |
||
27 | */ |
||
28 | public function format($input) |
||
32 | |||
33 | /** |
||
34 | * Just returns the inputted $input array |
||
35 | * |
||
36 | * @param array $input |
||
37 | * @return array |
||
38 | */ |
||
39 | public function formatArray($input) |
||
43 | } |
||
44 | // End of file LeaveAlonel.php |
||
45 | // Location: core\services\formatters/LeaveAlonel.php |