Skip to content

Commit

Permalink
restore links
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed May 12, 2022
1 parent 52ea412 commit 1ec5e2d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function __construct(

/**
* Special case for "preg_match(), preg_match_all()" - with 3rd argument
* @changelog https://github.com/rectorphp/rector/issues/786
* @see https://github.com/rectorphp/rector/issues/786
*/
public function correct(Node $node, Type $originalType): Type
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ final class AddPregQuoteDelimiterRector extends AbstractRector
{
/**
* @var string
* @changelog https://www.php.net/manual/en/reference.pcre.pattern.modifiers.php
* @see https://www.php.net/manual/en/reference.pcre.pattern.modifiers.php
*/
private const ALL_MODIFIERS = 'imsxeADSUXJu';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
final class DowngradePregUnmatchedAsNullConstantRector extends AbstractRector
{
/**
* @changelog https://www.php.net/manual/en/function.preg-match.php
* @see https://www.php.net/manual/en/function.preg-match.php
* @var string
*/
private const UNMATCHED_NULL_FLAG = 'PREG_UNMATCHED_AS_NULL';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ private function getDifferentParamTypeFromReflectionMethod(
if ($parentReflectionMethodParam->getName() === $paramName) {
/**
* Getting a ReflectionNamedType works from PHP 7.1 onwards
* @changelog https://www.php.net/manual/en/reflectionparameter.gettype.php#125334
* @see https://www.php.net/manual/en/reflectionparameter.gettype.php#125334
*/
$reflectionParamType = $parentReflectionMethodParam->getType();

Expand Down
2 changes: 1 addition & 1 deletion rules/Naming/Naming/PropertyNaming.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public function fqnToVariableName(ThisType | ObjectType | string $objectType): s
}

/**
* @changelog https://stackoverflow.com/a/2792045/1348344
* @see https://stackoverflow.com/a/2792045/1348344
*/
public function underscoreToName(string $underscoreName): string
{
Expand Down
2 changes: 1 addition & 1 deletion src/NonPhpFile/Rector/RenameClassNonPhpRector.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ final class RenameClassNonPhpRector implements NonPhpRectorInterface, Configurab

/**
* @see https://regex101.com/r/HKUFJD/5
* @changelog https://stackoverflow.com/a/3926546/1348344
* @see https://stackoverflow.com/a/3926546/1348344
* @var string
*/
private const STANDALONE_CLASS_SUFFIX_REGEX = '(?=::)#';
Expand Down

0 comments on commit 1ec5e2d

Please sign in to comment.