proxitok/helpers/Following.php
2022-01-06 00:11:00 +01:00

13 lines
266 B
PHP

<?php
namespace Helpers;
class Following {
static public function get (): array {
$following_string = Settings::get('following');
if ($following_string) {
return explode(',', $following_string);
}
return [];
}
};