Skip to content

Commit f2a7704

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: DX: replace @link with @see annotation
2 parents 9b9f1be + a1afa21 commit f2a7704

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

src/Symfony/Component/Console/Logger/ConsoleLogger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
* @author Kévin Dunglas <[email protected]>
2424
*
25-
* @link http://www.php-fig.org/psr/psr-3/
25+
* @see http://www.php-fig.org/psr/psr-3/
2626
*/
2727
class ConsoleLogger extends AbstractLogger
2828
{

src/Symfony/Component/Form/FormTypeGuesserInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function guessMaxLength($class, $property);
5454
* Example:
5555
* You want a float greater than 5, 4.512313 is not valid but length(4.512314) > length(5)
5656
*
57-
* @link https://github.com/symfony/symfony/pull/3927
57+
* @see https://github.com/symfony/symfony/pull/3927
5858
*
5959
* @param string $class The fully qualified class name
6060
* @param string $property The name of the property to guess for

src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/NumberToLocalizedStringTransformerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ public function testReverseTransformExpectsValidNumber()
508508
/**
509509
* @expectedException \Symfony\Component\Form\Exception\TransformationFailedException
510510
*
511-
* @link https://github.com/symfony/symfony/issues/3161
511+
* @see https://github.com/symfony/symfony/issues/3161
512512
*/
513513
public function testReverseTransformDisallowsNaN()
514514
{

src/Symfony/Component/HttpFoundation/File/MimeType/FileinfoMimeTypeGuesser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class FileinfoMimeTypeGuesser implements MimeTypeGuesserInterface
2828
*
2929
* @param string $magicFile A magic file to use with the finfo instance
3030
*
31-
* @link http://www.php.net/manual/en/function.finfo-open.php
31+
* @see http://www.php.net/manual/en/function.finfo-open.php
3232
*/
3333
public function __construct($magicFile = null)
3434
{

src/Symfony/Component/HttpFoundation/Request.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1680,7 +1680,7 @@ public function getAcceptableContentTypes()
16801680
* It works if your JavaScript library sets an X-Requested-With HTTP header.
16811681
* It is known to work with common JavaScript frameworks:
16821682
*
1683-
* @link http://en.wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript
1683+
* @see http://en.wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript
16841684
*
16851685
* @return bool true if the request is an XMLHttpRequest, false otherwise
16861686
*/

src/Symfony/Component/HttpFoundation/Response.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ public static function closeOutputBuffers($targetLevel, $flush)
11671167
/**
11681168
* Checks if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9.
11691169
*
1170-
* @link http://support.microsoft.com/kb/323308
1170+
* @see http://support.microsoft.com/kb/323308
11711171
*/
11721172
protected function ensureIEOverSSLCompatibility(Request $request)
11731173
{

src/Symfony/Component/Intl/Data/Generator/RegionDataGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @author Bernhard Schussek <[email protected]>
2323
*
24-
* @link http://source.icu-project.org/repos/icu/icu4j/trunk/main/classes/core/src/com/ibm/icu/util/Region.java
24+
* @see http://source.icu-project.org/repos/icu/icu4j/trunk/main/classes/core/src/com/ibm/icu/util/Region.java
2525
*
2626
* @internal
2727
*/

src/Symfony/Component/Security/Core/Encoder/BCryptPasswordEncoder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function __construct($cost)
6262
*
6363
* @throws BadCredentialsException when the given password is too long
6464
*
65-
* @link http://lxr.php.net/xref/PHP_5_5/ext/standard/password.c#111
65+
* @see http://lxr.php.net/xref/PHP_5_5/ext/standard/password.c#111
6666
*/
6767
public function encodePassword($raw, $salt)
6868
{

src/Symfony/Component/Validator/Constraints/IbanValidator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* @author Michael Schummel
2222
* @author Bernhard Schussek <[email protected]>
2323
*
24-
* @link http://www.michael-schummel.de/2007/10/05/iban-prufung-mit-php/
24+
* @see http://www.michael-schummel.de/2007/10/05/iban-prufung-mit-php/
2525
*/
2626
class IbanValidator extends ConstraintValidator
2727
{
@@ -34,7 +34,7 @@ class IbanValidator extends ConstraintValidator
3434
* a BBAN (Basic Bank Account Number) which has a fixed length per country and,
3535
* included within it, a bank identifier with a fixed position and a fixed length per country
3636
*
37-
* @link http://www.swift.com/dsp/resources/documents/IBAN_Registry.pdf
37+
* @see http://www.swift.com/dsp/resources/documents/IBAN_Registry.pdf
3838
*
3939
* @var array
4040
*/

src/Symfony/Component/Validator/Constraints/Regex.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function getRequiredOptions()
5656
* Pattern is also ignored if match=false since the pattern should
5757
* then be reversed before application.
5858
*
59-
* @link http://dev.w3.org/html5/spec/single-page.html#the-pattern-attribute
59+
* @see http://dev.w3.org/html5/spec/single-page.html#the-pattern-attribute
6060
*
6161
* @return string|null
6262
*/

0 commit comments

Comments
 (0)