Skip to content

Commit

Permalink
Numerous "Enter description here" block comments updated to have mean…
Browse files Browse the repository at this point in the history
…ingful descriptions.
  • Loading branch information
predominant committed May 29, 2010
1 parent bc3e745 commit f06f0da
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 38 deletions.
10 changes: 6 additions & 4 deletions app/webroot/css.php
@@ -1,6 +1,6 @@
<?php <?php
/** /**
* Short description for file. * CSS helping functions
* *
* PHP versions 4 and 5 * PHP versions 4 and 5
* *
Expand All @@ -21,14 +21,16 @@
header('HTTP/1.1 404 Not Found'); header('HTTP/1.1 404 Not Found');
exit('File Not Found'); exit('File Not Found');
} }

/** /**
* Enter description here... * Ensure required classes are available.
*/ */
if (!class_exists('File')) { if (!class_exists('File')) {
uses('file'); uses('file');
} }

/** /**
* Enter description here... * Make clean CSS
* *
* @param unknown_type $path * @param unknown_type $path
* @param unknown_type $name * @param unknown_type $name
Expand All @@ -44,7 +46,7 @@ function make_clean_css($path, $name) {
return $output; return $output;
} }
/** /**
* Enter description here... * Write CSS cache
* *
* @param unknown_type $path * @param unknown_type $path
* @param unknown_type $content * @param unknown_type $content
Expand Down
6 changes: 3 additions & 3 deletions cake/console/templates/skel/webroot/css.php
Expand Up @@ -23,14 +23,14 @@
} }


/** /**
* Enter description here... * Ensure required files are included
*/ */
if (!class_exists('File')) { if (!class_exists('File')) {
require LIBS . 'file.php'; require LIBS . 'file.php';
} }


/** /**
* Enter description here... * Make clean CSS
* *
* @param unknown_type $path * @param unknown_type $path
* @param unknown_type $name * @param unknown_type $name
Expand All @@ -47,7 +47,7 @@ function make_clean_css($path, $name) {
} }


/** /**
* Enter description here... * Write CSS cache
* *
* @param unknown_type $path * @param unknown_type $path
* @param unknown_type $content * @param unknown_type $content
Expand Down
2 changes: 1 addition & 1 deletion cake/libs/model/datasources/datasource.php
Expand Up @@ -91,7 +91,7 @@ class DataSource extends Object {
var $endQuote = null; var $endQuote = null;


/** /**
* Enter description here... * Result
* *
* @var array * @var array
* @access protected * @access protected
Expand Down
4 changes: 2 additions & 2 deletions cake/libs/model/datasources/dbo/dbo_mysql.php
Expand Up @@ -507,9 +507,9 @@ function column($real) {
class DboMysql extends DboMysqlBase { class DboMysql extends DboMysqlBase {


/** /**
* Enter description here... * Datasource description
* *
* @var unknown_type * @var string
*/ */
var $description = "MySQL DBO Driver"; var $description = "MySQL DBO Driver";


Expand Down
4 changes: 2 additions & 2 deletions cake/libs/model/datasources/dbo/dbo_mysqli.php
Expand Up @@ -30,9 +30,9 @@
class DboMysqli extends DboMysqlBase { class DboMysqli extends DboMysqlBase {


/** /**
* Enter description here... * Datasource Description
* *
* @var unknown_type * @var string
*/ */
var $description = "Mysqli DBO Driver"; var $description = "Mysqli DBO Driver";


Expand Down
46 changes: 23 additions & 23 deletions cake/libs/model/datasources/dbo/dbo_oracle.php
Expand Up @@ -29,17 +29,17 @@
class DboOracle extends DboSource { class DboOracle extends DboSource {


/** /**
* Enter description here... * Configuration options
* *
* @var unknown_type * @var array
* @access public * @access public
*/ */
var $config = array(); var $config = array();


/** /**
* Enter description here... * Alias
* *
* @var unknown_type * @var string
*/ */
var $alias = ''; var $alias = '';


Expand All @@ -56,9 +56,9 @@ class DboOracle extends DboSource {
var $__transactionStarted = false; var $__transactionStarted = false;


/** /**
* Enter description here... * Column definitions
* *
* @var unknown_type * @var array
* @access public * @access public
*/ */
var $columns = array( var $columns = array(
Expand All @@ -77,25 +77,25 @@ class DboOracle extends DboSource {
'inet' => array('name' => 'inet')); 'inet' => array('name' => 'inet'));


/** /**
* Enter description here... * Connection object
* *
* @var unknown_type * @var mixed
* @access protected * @access protected
*/ */
var $connection; var $connection;


/** /**
* Enter description here... * Query limit
* *
* @var unknown_type * @var int
* @access protected * @access protected
*/ */
var $_limit = -1; var $_limit = -1;


/** /**
* Enter description here... * Query offset
* *
* @var unknown_type * @var int
* @access protected * @access protected
*/ */
var $_offset = 0; var $_offset = 0;
Expand All @@ -109,25 +109,25 @@ class DboOracle extends DboSource {
var $_map; var $_map;


/** /**
* Enter description here... * Current Row
* *
* @var unknown_type * @var mixed
* @access protected * @access protected
*/ */
var $_currentRow; var $_currentRow;


/** /**
* Enter description here... * Number of rows
* *
* @var unknown_type * @var int
* @access protected * @access protected
*/ */
var $_numRows; var $_numRows;


/** /**
* Enter description here... * Query results
* *
* @var unknown_type * @var mixed
* @access protected * @access protected
*/ */
var $_results; var $_results;
Expand Down Expand Up @@ -378,9 +378,9 @@ function _execute($sql) {
} }


/** /**
* Enter description here... * Fetch result row
* *
* @return unknown * @return array
* @access public * @access public
*/ */
function fetchRow() { function fetchRow() {
Expand Down Expand Up @@ -444,10 +444,10 @@ function createSequence($sequence) {
} }


/** /**
* Enter description here... * Create trigger
* *
* @param unknown_type $table * @param string $table
* @return unknown * @return mixed
* @access public * @access public
*/ */
function createTrigger($table) { function createTrigger($table) {
Expand Down
4 changes: 2 additions & 2 deletions cake/libs/model/datasources/dbo/dbo_sqlite.php
Expand Up @@ -29,9 +29,9 @@
class DboSqlite extends DboSource { class DboSqlite extends DboSource {


/** /**
* Enter description here... * Datasource Description
* *
* @var unknown_type * @var string
*/ */
var $description = "SQLite DBO Driver"; var $description = "SQLite DBO Driver";


Expand Down
2 changes: 1 addition & 1 deletion cake/libs/view/helpers/number.php
Expand Up @@ -69,7 +69,7 @@ class NumberHelper extends AppHelper {
* *
* @param float $number A floating point number. * @param float $number A floating point number.
* @param integer $precision The precision of the returned number. * @param integer $precision The precision of the returned number.
* @return float Enter description here... * @return float Formatted float.
* @access public * @access public
* @link http://book.cakephp.org/view/1454/precision * @link http://book.cakephp.org/view/1454/precision
*/ */
Expand Down

0 comments on commit f06f0da

Please sign in to comment.