Skip to content

Commit dfda9e8

Browse files
committed
Finish another block of link tag updates.
1 parent 53f3ecf commit dfda9e8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+127
-199
lines changed

src/Error/Debugger.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,6 @@ public static function dump($var, $depth = 3) {
184184
* @param int|string $level type of log to use. Defaults to 'debug'
185185
* @param int $depth The depth to output to. Defaults to 3.
186186
* @return void
187-
* @link http://book.cakephp.org/2.0/en/development/debugging.html#Debugger::log
188187
*/
189188
public static function log($var, $level = 'debug', $depth = 3) {
190189
$source = static::trace(array('start' => 1)) . "\n";

src/I18n/Number.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* Methods to make numbers more readable.
2323
*
24-
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html
24+
* @link http://book.cakephp.org/3.0/en/core-libraries/number.html
2525
*/
2626
class Number {
2727

@@ -45,7 +45,7 @@ class Number {
4545
* @param float $value A floating point number.
4646
* @param int $precision The precision of the returned number.
4747
* @return string Formatted float.
48-
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html#NumberHelper::precision
48+
* @link http://book.cakephp.org/3.0/en/core-libraries/number.html#formatting-floating-point-numbers
4949
*/
5050
public static function precision($value, $precision = 3) {
5151
$formatter = static::formatter(['precision' => $precision, 'places' => $precision]);
@@ -57,7 +57,7 @@ public static function precision($value, $precision = 3) {
5757
*
5858
* @param int $size Size in bytes
5959
* @return string Human readable size
60-
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html#NumberHelper::toReadableSize
60+
* @link http://book.cakephp.org/3.0/en/core-libraries/number.html#interacting-with-human-readable-values
6161
*/
6262
public static function toReadableSize($size) {
6363
switch (true) {
@@ -85,7 +85,7 @@ public static function toReadableSize($size) {
8585
* @param int $precision The precision of the returned number
8686
* @param array $options Options
8787
* @return string Percentage string
88-
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html#NumberHelper::toPercentage
88+
* @link http://book.cakephp.org/3.0/en/core-libraries/number.html#formatting-percentages
8989
*/
9090
public static function toPercentage($value, $precision = 2, array $options = array()) {
9191
$options += array('multiply' => false);

src/I18n/Time.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,6 @@ public function __toString() {
593593
* @param bool $group If true (default value) groups the identifiers list by primary region
594594
* @return array List of timezone identifiers
595595
* @since 2.2
596-
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#TimeHelper::listTimezones
597596
*/
598597
public static function listTimezones($filter = null, $country = null, $group = true) {
599598
$regex = null;

src/Network/Exception/BadRequestException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Redistributions of files must retain the above copyright notice.
88
*
99
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1110
* @since 3.0.0
1211
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1312
*/

src/Network/Exception/ForbiddenException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Redistributions of files must retain the above copyright notice.
88
*
99
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1110
* @since 3.0.0
1211
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1312
*/

src/Network/Exception/HttpException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Redistributions of files must retain the above copyright notice.
88
*
99
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1110
* @since 3.0.0
1211
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1312
*/

src/Network/Exception/InternalErrorException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Redistributions of files must retain the above copyright notice.
88
*
99
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1110
* @since 3.0.0
1211
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1312
*/

src/Network/Exception/MethodNotAllowedException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Redistributions of files must retain the above copyright notice.
88
*
99
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1110
* @since 3.0.0
1211
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1312
*/

src/Network/Exception/NotFoundException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Redistributions of files must retain the above copyright notice.
88
*
99
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1110
* @since 3.0.0
1211
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1312
*/

src/Network/Exception/NotImplementedException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Redistributions of files must retain the above copyright notice.
88
*
99
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1110
* @since 3.0.0
1211
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1312
*/

src/Network/Exception/SocketException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Redistributions of files must retain the above copyright notice.
88
*
99
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1110
* @since 3.0.0
1211
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1312
*/

src/Network/Exception/UnauthorizedException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Redistributions of files must retain the above copyright notice.
88
*
99
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1110
* @since 3.0.0
1211
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1312
*/

src/ORM/Exception/MissingBehaviorException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Redistributions of files must retain the above copyright notice.
88
*
99
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1110
* @since 3.0.0
1211
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1312
*/

src/Routing/Exception/MissingControllerException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Redistributions of files must retain the above copyright notice.
88
*
99
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1110
* @since 3.0.0
1211
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1312
*/

src/Routing/Exception/MissingDispatcherFilterException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Redistributions of files must retain the above copyright notice.
88
*
99
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1110
* @since 3.0.0
1211
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1312
*/

src/Routing/Exception/MissingRouteException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Redistributions of files must retain the above copyright notice.
88
*
99
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1110
* @since 3.0.0
1211
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1312
*/

src/Shell/ServerShell.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function initialize() {
7878
* or otherwise modify the pre-command flow.
7979
*
8080
* @return void
81-
* @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::startup
81+
* @link http://book.cakephp.org/3.0/en/console-and-shells.html#hook-methods
8282
*/
8383
public function startup() {
8484
if (!empty($this->params['host'])) {

src/Shell/TestShell.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
* Redistributions of files must retain the above copyright notice
1313
*
1414
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
15-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1615
* @since 1.2.0
1716
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1817
*/

src/TestSuite/ControllerTestCase.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
* Redistributions of files must retain the above copyright notice
99
*
1010
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
11-
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
1211
* @since 2.0.0
1312
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1413
*/

src/TestSuite/Fixture/TestFixture.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
* Redistributions of files must retain the above copyright notice
99
*
1010
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
11-
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
1211
* @since 1.2.0
1312
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1413
*/

src/TestSuite/IntegrationTestCase.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
* Redistributions of files must retain the above copyright notice
99
*
1010
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
11-
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
1211
* @since 3.0.0
1312
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1413
*/

src/TestSuite/Stub/Response.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
* Redistributions of files must retain the above copyright notice
99
*
1010
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
11-
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
1211
* @since 3.0.0
1312
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1413
*/

src/TestSuite/TestCase.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
* Redistributions of files must retain the above copyright notice
99
*
1010
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
11-
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
1211
* @since 1.2.0
1312
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1413
*/

src/Utility/Exception/XmlException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Redistributions of files must retain the above copyright notice.
88
*
99
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10-
* @link http://book.cakephp.org/2.0/en/development/testing.html
1110
* @since 3.0.0
1211
* @license http://www.opensource.org/licenses/mit-license.php MIT License
1312
*/

0 commit comments

Comments
 (0)