Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 426 Bytes

README.markdown

File metadata and controls

25 lines (17 loc) · 426 Bytes

Controller directory

You can create custom controllers to change the default behavior.

It might look like the following.

index.php

namespace Controller;

class Index extends \Controller
{
	public $format = 'view';
	public $reference ='pages/index';

	public function get()
	{
		...
	}
}

You can modify the controller to act exactly as you need it to, allowing for very flexible documentation presentation.