Skip to content

Commit

Permalink
update links to the book
Browse files Browse the repository at this point in the history
  • Loading branch information
antograssiot committed Jan 8, 2015
1 parent 21b0149 commit bcab995
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Core/App.php
Expand Up @@ -38,7 +38,7 @@
* Plugins can be located with App as well. Using Plugin::path('DebugKit') for example, will
* give you the full path to the DebugKit plugin.
*
* @link http://book.cakephp.org/3.0/en/core-utility-libraries/app.html
* @link http://book.cakephp.org/3.0/en/core-libraries/app.html
*/
class App
{
Expand Down
10 changes: 5 additions & 5 deletions src/Filesystem/File.php
Expand Up @@ -33,31 +33,31 @@ class File
* File name
*
* @var string
* http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#File::$name
* http://book.cakephp.org/3.0/en/core-libraries/file-folder.html#Cake\Filesystem\File::$name
*/
public $name = null;

/**
* File info
*
* @var array
* http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#File::$info
* http://book.cakephp.org/3.0/en/core-libraries/file-folder.html#Cake\Filesystem\File::$info
*/
public $info = [];

/**
* 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
* http://book.cakephp.org/3.0/en/core-libraries/file-folder.html#Cake\Filesystem\File::$handle
*/
public $handle = null;

/**
* Enable locking for file reading and writing
*
* @var bool
* http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#File::$lock
* http://book.cakephp.org/3.0/en/core-libraries/file-folder.html#Cake\Filesystem\File::$lock
*/
public $lock = null;

Expand All @@ -67,7 +67,7 @@ class File
* Current file's absolute path
*
* @var mixed
* http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#File::$path
* http://book.cakephp.org/3.0/en/core-libraries/file-folder.html#Cake\Filesystem\File::$path
*/
public $path = null;

Expand Down
2 changes: 1 addition & 1 deletion src/Filesystem/Folder.php
Expand Up @@ -66,7 +66,7 @@ class Folder
* Mode to be used on create. Does nothing on windows platforms.
*
* @var int
* http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#Folder::$mode
* http://book.cakephp.org/3.0/en/core-libraries/file-folder.html#Cake\Filesystem\Folder::$mode
*/
public $mode = 0755;

Expand Down
2 changes: 1 addition & 1 deletion src/View/Helper/FormHelper.php
Expand Up @@ -318,7 +318,7 @@ protected function _isRequiredField($validationRules)
* to make a model-less form.
* @param array $options An array of html attributes and options.
* @return string An formatted opening FORM tag.
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/form.html#options-for-create
* @link http://book.cakephp.org/3.0/en/views/helpers/form.html#Cake\View\Helper\FormHelper::create
*/
public function create($model = null, array $options = [])
{
Expand Down

0 comments on commit bcab995

Please sign in to comment.