13 lines
266 B
PHP
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 [];
|
|
}
|
|
};
|