proxitok/helpers/Following.php

13 lines
266 B
PHP
Raw Normal View History

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