Select the types of activity you want to include in your feed.
1<?php 2 3declare(strict_types=1); 4 5function reverseString(string $text): string 6{ 7 return implode("", array_reverse(str_split($text))); 8}