mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Add @link to File/Folder properties
This commit is contained in:
parent
cb49b242ae
commit
53f7a716ec
2 changed files with 10 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue