fipamo/brain/data/Settings.inc.php

15 lines
226 B
PHP
Raw Normal View History

2020-11-17 23:27:25 +01:00
<?php
class Settings
{
private $folks;
private $tags;
private $settings;
public function getFolks()
{
return $this->folks = json_decode(file_get_contents('config/folks.json'), true);
//return $this->secret;
}
}