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

View file

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