mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Minor tab issues.
git-svn-id: https://svn.cakephp.org/repo/trunk/cake@142 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
3f7450435a
commit
a3621e3e2f
1 changed files with 29 additions and 29 deletions
|
@ -43,46 +43,46 @@ uses('object', 'inflector');
|
||||||
* @subpackage cake.libs
|
* @subpackage cake.libs
|
||||||
* @since Cake v 0.2.9
|
* @since Cake v 0.2.9
|
||||||
*/
|
*/
|
||||||
class Bake extends Object {
|
class Bake extends Object
|
||||||
|
{
|
||||||
/**
|
/**
|
||||||
* Standard input stream (php://stdin).
|
* Standard input stream (php://stdin).
|
||||||
*
|
*
|
||||||
* @var resource
|
* @var resource
|
||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
var $stdin = null;
|
var $stdin = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Standard output stream (php://stdout).
|
* Standard output stream (php://stdout).
|
||||||
*
|
*
|
||||||
* @var resource
|
* @var resource
|
||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
var $stdout = null;
|
var $stdout = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Standard error stream (php://stderr).
|
* Standard error stream (php://stderr).
|
||||||
*
|
*
|
||||||
* @var resource
|
* @var resource
|
||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
var $stderr = null;
|
var $stderr = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Counts taken actions.
|
* Counts taken actions.
|
||||||
*
|
*
|
||||||
* @var integer
|
* @var integer
|
||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
var $actions = null;
|
var $actions = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Decides wether to overwrite existing files without asking.
|
* Decides wether to overwrite existing files without asking.
|
||||||
*
|
*
|
||||||
* @var boolean
|
* @var boolean
|
||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
var $dontAsk = false;
|
var $dontAsk = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue