Add @link to File/Folder properties

This commit is contained in:
Kyle Robinson Young 2011-11-18 11:05:30 -08:00
parent cb49b242ae
commit 53f7a716ec
2 changed files with 10 additions and 1 deletions

View file

@ -34,6 +34,7 @@ class File {
* Folder object of the File
*
* @var Folder
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#File::$Folder
*/
public $Folder = null;
@ -41,13 +42,15 @@ class File {
* Filename
*
* @var string
* http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#File::$name
*/
public $name = null;
/**
* File info
*
* @var string
* @var array
* http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#File::$info
*/
public $info = array();
@ -55,6 +58,7 @@ class File {
* Holds the file handler resource if the file is opened
*
* @var resource
* http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#File::$handle
*/
public $handle = null;
@ -62,6 +66,7 @@ class File {
* Enable locking for file reading and writing
*
* @var boolean
* http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#File::$lock
*/
public $lock = null;
@ -71,6 +76,7 @@ class File {
* Current file's absolute path
*
* @var mixed null
* http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#File::$path
*/
public $path = null;

View file

@ -29,6 +29,7 @@ class Folder {
* Path to Folder.
*
* @var string
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#Folder::$path
*/
public $path = null;
@ -37,6 +38,7 @@ class Folder {
* should be sorted by name.
*
* @var boolean
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#Folder::$sort
*/
public $sort = false;
@ -44,6 +46,7 @@ class Folder {
* Mode to be used on create. Does nothing on windows platforms.
*
* @var integer
* http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#Folder::$mode
*/
public $mode = 0755;