<?php

class IndexControl
{
	private $secret = 'not very secretish';
	
	public function getSecret()
	{
		return $this->secret;
	}
	 
}