diff --git a/src/Symfony/Component/Console/Logger/ConsoleLogger.php b/src/Symfony/Component/Console/Logger/ConsoleLogger.php index 1f7417ea5a..987e96a658 100644 --- a/src/Symfony/Component/Console/Logger/ConsoleLogger.php +++ b/src/Symfony/Component/Console/Logger/ConsoleLogger.php @@ -22,7 +22,7 @@ use Symfony\Component\Console\Output\ConsoleOutputInterface; * * @author Kévin Dunglas * - * @link http://www.php-fig.org/psr/psr-3/ + * @see http://www.php-fig.org/psr/psr-3/ */ class ConsoleLogger extends AbstractLogger { diff --git a/src/Symfony/Component/Form/FormTypeGuesserInterface.php b/src/Symfony/Component/Form/FormTypeGuesserInterface.php index f62112493d..0aec6364c4 100644 --- a/src/Symfony/Component/Form/FormTypeGuesserInterface.php +++ b/src/Symfony/Component/Form/FormTypeGuesserInterface.php @@ -54,7 +54,7 @@ interface FormTypeGuesserInterface * Example: * You want a float greater than 5, 4.512313 is not valid but length(4.512314) > length(5) * - * @link https://github.com/symfony/symfony/pull/3927 + * @see https://github.com/symfony/symfony/pull/3927 * * @param string $class The fully qualified class name * @param string $property The name of the property to guess for diff --git a/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/NumberToLocalizedStringTransformerTest.php b/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/NumberToLocalizedStringTransformerTest.php index 29b9afef83..3bf8d93c8c 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/NumberToLocalizedStringTransformerTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/NumberToLocalizedStringTransformerTest.php @@ -510,7 +510,7 @@ class NumberToLocalizedStringTransformerTest extends \PHPUnit_Framework_TestCase /** * @expectedException \Symfony\Component\Form\Exception\TransformationFailedException * - * @link https://github.com/symfony/symfony/issues/3161 + * @see https://github.com/symfony/symfony/issues/3161 */ public function testReverseTransformDisallowsNaN() { diff --git a/src/Symfony/Component/HttpFoundation/File/MimeType/FileinfoMimeTypeGuesser.php b/src/Symfony/Component/HttpFoundation/File/MimeType/FileinfoMimeTypeGuesser.php index a7e4ae2e51..6fee94798c 100644 --- a/src/Symfony/Component/HttpFoundation/File/MimeType/FileinfoMimeTypeGuesser.php +++ b/src/Symfony/Component/HttpFoundation/File/MimeType/FileinfoMimeTypeGuesser.php @@ -28,7 +28,7 @@ class FileinfoMimeTypeGuesser implements MimeTypeGuesserInterface * * @param string $magicFile A magic file to use with the finfo instance * - * @link http://www.php.net/manual/en/function.finfo-open.php + * @see http://www.php.net/manual/en/function.finfo-open.php */ public function __construct($magicFile = null) { diff --git a/src/Symfony/Component/HttpFoundation/Request.php b/src/Symfony/Component/HttpFoundation/Request.php index 5e07af3790..ad15787586 100644 --- a/src/Symfony/Component/HttpFoundation/Request.php +++ b/src/Symfony/Component/HttpFoundation/Request.php @@ -1674,7 +1674,7 @@ class Request * It works if your JavaScript library sets an X-Requested-With HTTP header. * It is known to work with common JavaScript frameworks: * - * @link http://en.wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript + * @see http://en.wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript * * @return bool true if the request is an XMLHttpRequest, false otherwise */ diff --git a/src/Symfony/Component/HttpFoundation/Response.php b/src/Symfony/Component/HttpFoundation/Response.php index 7a05a03cdc..952fbc48a6 100644 --- a/src/Symfony/Component/HttpFoundation/Response.php +++ b/src/Symfony/Component/HttpFoundation/Response.php @@ -1163,7 +1163,7 @@ class Response /** * Checks if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9. * - * @link http://support.microsoft.com/kb/323308 + * @see http://support.microsoft.com/kb/323308 */ protected function ensureIEOverSSLCompatibility(Request $request) { diff --git a/src/Symfony/Component/Intl/Data/Bundle/Reader/JsonBundleReader.php b/src/Symfony/Component/Intl/Data/Bundle/Reader/JsonBundleReader.php index 1973843481..84644b9fe7 100644 --- a/src/Symfony/Component/Intl/Data/Bundle/Reader/JsonBundleReader.php +++ b/src/Symfony/Component/Intl/Data/Bundle/Reader/JsonBundleReader.php @@ -63,7 +63,7 @@ class JsonBundleReader implements BundleReaderInterface /** * @return string The last error message created by {@link json_decode()} * - * @link http://de2.php.net/manual/en/function.json-last-error-msg.php#113243 + * @see http://de2.php.net/manual/en/function.json-last-error-msg.php#113243 */ private static function getLastJsonError() { diff --git a/src/Symfony/Component/Intl/Data/Generator/RegionDataGenerator.php b/src/Symfony/Component/Intl/Data/Generator/RegionDataGenerator.php index 466b091b41..28c90a5ed9 100644 --- a/src/Symfony/Component/Intl/Data/Generator/RegionDataGenerator.php +++ b/src/Symfony/Component/Intl/Data/Generator/RegionDataGenerator.php @@ -21,7 +21,7 @@ use Symfony\Component\Intl\Data\Util\LocaleScanner; * * @author Bernhard Schussek * - * @link http://source.icu-project.org/repos/icu/icu4j/trunk/main/classes/core/src/com/ibm/icu/util/Region.java + * @see http://source.icu-project.org/repos/icu/icu4j/trunk/main/classes/core/src/com/ibm/icu/util/Region.java * * @internal */ diff --git a/src/Symfony/Component/Security/Core/Encoder/BCryptPasswordEncoder.php b/src/Symfony/Component/Security/Core/Encoder/BCryptPasswordEncoder.php index 83ae33466e..f2fe0817dc 100644 --- a/src/Symfony/Component/Security/Core/Encoder/BCryptPasswordEncoder.php +++ b/src/Symfony/Component/Security/Core/Encoder/BCryptPasswordEncoder.php @@ -66,7 +66,7 @@ class BCryptPasswordEncoder extends BasePasswordEncoder * * @throws BadCredentialsException when the given password is too long * - * @link http://lxr.php.net/xref/PHP_5_5/ext/standard/password.c#111 + * @see http://lxr.php.net/xref/PHP_5_5/ext/standard/password.c#111 */ public function encodePassword($raw, $salt) { diff --git a/src/Symfony/Component/Validator/Constraints/IbanValidator.php b/src/Symfony/Component/Validator/Constraints/IbanValidator.php index 72ae002675..ae4eb112b7 100644 --- a/src/Symfony/Component/Validator/Constraints/IbanValidator.php +++ b/src/Symfony/Component/Validator/Constraints/IbanValidator.php @@ -21,7 +21,7 @@ use Symfony\Component\Validator\Exception\UnexpectedTypeException; * @author Michael Schummel * @author Bernhard Schussek * - * @link http://www.michael-schummel.de/2007/10/05/iban-prufung-mit-php/ + * @see http://www.michael-schummel.de/2007/10/05/iban-prufung-mit-php/ */ class IbanValidator extends ConstraintValidator { @@ -34,7 +34,7 @@ class IbanValidator extends ConstraintValidator * a BBAN (Basic Bank Account Number) which has a fixed length per country and, * included within it, a bank identifier with a fixed position and a fixed length per country * - * @link http://www.swift.com/dsp/resources/documents/IBAN_Registry.pdf + * @see http://www.swift.com/dsp/resources/documents/IBAN_Registry.pdf * * @var array */ diff --git a/src/Symfony/Component/Validator/Constraints/Regex.php b/src/Symfony/Component/Validator/Constraints/Regex.php index 724274af99..a37256d614 100644 --- a/src/Symfony/Component/Validator/Constraints/Regex.php +++ b/src/Symfony/Component/Validator/Constraints/Regex.php @@ -50,7 +50,7 @@ class Regex extends Constraint * Pattern is also ignored if match=false since the pattern should * then be reversed before application. * - * @link http://dev.w3.org/html5/spec/single-page.html#the-pattern-attribute + * @see http://dev.w3.org/html5/spec/single-page.html#the-pattern-attribute * * @return string|null */