Minor tab issues.

git-svn-id: https://svn.cakephp.org/repo/trunk/cake@142 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
brego 2005-05-18 22:37:03 +00:00
parent 3f7450435a
commit a3621e3e2f

View file

@ -43,46 +43,46 @@ uses('object', 'inflector');
* @subpackage cake.libs
* @since Cake v 0.2.9
*/
class Bake extends Object {
/**
* Standard input stream (php://stdin).
*
* @var resource
* @access private
*/
class Bake extends Object
{
/**
* Standard input stream (php://stdin).
*
* @var resource
* @access private
*/
var $stdin = null;
/**
* Standard output stream (php://stdout).
*
* @var resource
* @access private
*/
/**
* Standard output stream (php://stdout).
*
* @var resource
* @access private
*/
var $stdout = null;
/**
* Standard error stream (php://stderr).
*
* @var resource
* @access private
*/
* Standard error stream (php://stderr).
*
* @var resource
* @access private
*/
var $stderr = null;
/**
* Counts taken actions.
*
* @var integer
* @access private
*/
* Counts taken actions.
*
* @var integer
* @access private
*/
var $actions = null;
/**
* Decides wether to overwrite existing files without asking.
*
* @var boolean
* @access private
*/
* Decides wether to overwrite existing files without asking.
*
* @var boolean
* @access private
*/
var $dontAsk = false;
/**