fipamo/brain/controller/IndexControl.inc.php

12 lines
134 B
PHP
Raw Normal View History

2020-11-17 23:27:25 +01:00
<?php
class IndexControl
{
private $secret = 'not very secretish';
public function getSecret()
{
return $this->secret;
}
}