Skip to content

Commit

Permalink
Finish another block of link tag updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Nov 17, 2014
1 parent 53f3ecf commit dfda9e8
Show file tree
Hide file tree
Showing 44 changed files with 127 additions and 199 deletions.
1 change: 0 additions & 1 deletion src/Error/Debugger.php
Expand Up @@ -184,7 +184,6 @@ public static function dump($var, $depth = 3) {
* @param int|string $level type of log to use. Defaults to 'debug'
* @param int $depth The depth to output to. Defaults to 3.
* @return void
* @link http://book.cakephp.org/2.0/en/development/debugging.html#Debugger::log
*/
public static function log($var, $level = 'debug', $depth = 3) {
$source = static::trace(array('start' => 1)) . "\n";
Expand Down
8 changes: 4 additions & 4 deletions src/I18n/Number.php
Expand Up @@ -21,7 +21,7 @@
*
* Methods to make numbers more readable.
*
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html
* @link http://book.cakephp.org/3.0/en/core-libraries/number.html
*/
class Number {

Expand All @@ -45,7 +45,7 @@ class Number {
* @param float $value A floating point number.
* @param int $precision The precision of the returned number.
* @return string Formatted float.
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html#NumberHelper::precision
* @link http://book.cakephp.org/3.0/en/core-libraries/number.html#formatting-floating-point-numbers
*/
public static function precision($value, $precision = 3) {
$formatter = static::formatter(['precision' => $precision, 'places' => $precision]);
Expand All @@ -57,7 +57,7 @@ public static function precision($value, $precision = 3) {
*
* @param int $size Size in bytes
* @return string Human readable size
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html#NumberHelper::toReadableSize
* @link http://book.cakephp.org/3.0/en/core-libraries/number.html#interacting-with-human-readable-values
*/
public static function toReadableSize($size) {
switch (true) {
Expand Down Expand Up @@ -85,7 +85,7 @@ public static function toReadableSize($size) {
* @param int $precision The precision of the returned number
* @param array $options Options
* @return string Percentage string
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html#NumberHelper::toPercentage
* @link http://book.cakephp.org/3.0/en/core-libraries/number.html#formatting-percentages
*/
public static function toPercentage($value, $precision = 2, array $options = array()) {
$options += array('multiply' => false);
Expand Down
1 change: 0 additions & 1 deletion src/I18n/Time.php
Expand Up @@ -593,7 +593,6 @@ public function __toString() {
* @param bool $group If true (default value) groups the identifiers list by primary region
* @return array List of timezone identifiers
* @since 2.2
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#TimeHelper::listTimezones
*/
public static function listTimezones($filter = null, $country = null, $group = true) {
$regex = null;
Expand Down
1 change: 0 additions & 1 deletion src/Network/Exception/BadRequestException.php
Expand Up @@ -7,7 +7,6 @@
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/Network/Exception/ForbiddenException.php
Expand Up @@ -7,7 +7,6 @@
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/Network/Exception/HttpException.php
Expand Up @@ -7,7 +7,6 @@
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/Network/Exception/InternalErrorException.php
Expand Up @@ -7,7 +7,6 @@
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/Network/Exception/MethodNotAllowedException.php
Expand Up @@ -7,7 +7,6 @@
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/Network/Exception/NotFoundException.php
Expand Up @@ -7,7 +7,6 @@
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/Network/Exception/NotImplementedException.php
Expand Up @@ -7,7 +7,6 @@
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/Network/Exception/SocketException.php
Expand Up @@ -7,7 +7,6 @@
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/Network/Exception/UnauthorizedException.php
Expand Up @@ -7,7 +7,6 @@
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/ORM/Exception/MissingBehaviorException.php
Expand Up @@ -7,7 +7,6 @@
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/Routing/Exception/MissingControllerException.php
Expand Up @@ -7,7 +7,6 @@
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/Routing/Exception/MissingDispatcherFilterException.php
Expand Up @@ -7,7 +7,6 @@
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/Routing/Exception/MissingRouteException.php
Expand Up @@ -7,7 +7,6 @@
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Shell/ServerShell.php
Expand Up @@ -78,7 +78,7 @@ public function initialize() {
* or otherwise modify the pre-command flow.
*
* @return void
* @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::startup
* @link http://book.cakephp.org/3.0/en/console-and-shells.html#hook-methods
*/
public function startup() {
if (!empty($this->params['host'])) {
Expand Down
1 change: 0 additions & 1 deletion src/Shell/TestShell.php
Expand Up @@ -12,7 +12,6 @@
* Redistributions of files must retain the above copyright notice
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 1.2.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/TestSuite/ControllerTestCase.php
Expand Up @@ -8,7 +8,6 @@
* Redistributions of files must retain the above copyright notice
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
* @since 2.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/TestSuite/Fixture/TestFixture.php
Expand Up @@ -8,7 +8,6 @@
* Redistributions of files must retain the above copyright notice
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
* @since 1.2.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/TestSuite/IntegrationTestCase.php
Expand Up @@ -8,7 +8,6 @@
* Redistributions of files must retain the above copyright notice
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/TestSuite/Stub/Response.php
Expand Up @@ -8,7 +8,6 @@
* Redistributions of files must retain the above copyright notice
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/TestSuite/TestCase.php
Expand Up @@ -8,7 +8,6 @@
* Redistributions of files must retain the above copyright notice
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
* @since 1.2.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down
1 change: 0 additions & 1 deletion src/Utility/Exception/XmlException.php
Expand Up @@ -7,7 +7,6 @@
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
Expand Down

0 comments on commit dfda9e8

Please sign in to comment.