Configs

Usage

To generate a config file :

bob config [args] <config_name> [options ...]
Note : You can use the shortcut bob co instead of bob config to save characters.

Arguments

None.

Example

bob config screen height width

produces :

<?php

return array(

	/*
	|--------------------------------------------------------------------------
	| height
	|--------------------------------------------------------------------------
	|
	| Here you describe the config option in detail.
	|
	*/

	'height' 	=> true,

	/*
	|--------------------------------------------------------------------------
	| width
	|--------------------------------------------------------------------------
	|
	| Here you describe the config option in detail.
	|
	*/

	'width' 	=> true,

);