forked from projects/fipamo
12 lines
134 B
PHP
12 lines
134 B
PHP
|
<?php
|
||
|
|
||
|
class IndexControl
|
||
|
{
|
||
|
private $secret = 'not very secretish';
|
||
|
|
||
|
public function getSecret()
|
||
|
{
|
||
|
return $this->secret;
|
||
|
}
|
||
|
|
||
|
}
|