Joseph Bielawski
d2923570d2
[DeadCode] Rector RemoveDeadConstructorRector
should skip private
method
2019-07-19 16:16:30 +02:00
Tomas Votruba
e8b5a11ce4
[CodeQuality] Fix CompleteDynamicPropertiesRector for dynamic property fetch
2019-07-19 16:00:55 +02:00
Tomas Votruba
28f51cd5ce
[CodingStyle] Improve NewlineBeforeNewAssignSetRector
2019-07-16 22:47:29 +02:00
Tomas Votruba
48449eed0c
add reference support to ParamTypeDeclarationRector
2019-07-15 21:40:45 +02:00
Tomáš Votruba
b38f7fa2f8
[CodeStyle] Newline before assign ( #1739 )
...
[CodeStyle] Newline before assign
2019-07-15 20:44:14 +02:00
Tomáš Votruba
ddb54b248a
Merge pull request #1735 from tigitz/feat-consider-ref-symbol-docblock
...
Consider reference symbol in docblock for param type declaration rector
2019-07-15 20:36:24 +02:00
Tomas Votruba
473460e1e5
[CodingStyle] Add NewlineBeforeNewAssignSetRector
2019-07-15 20:35:52 +02:00
Tomas Votruba
87e7343268
use constant over string [skip ci]
2019-07-14 14:50:28 +02:00
Tomas Votruba
d04b66adef
fix import order
2019-07-14 14:00:41 +02:00
Tomas Votruba
1a8ed46b02
fix cs
2019-07-14 13:05:55 +02:00
Philippe Segatori
dd28099d92
Consider reference symbol in docblock for param type declaration rector
2019-07-13 15:40:29 +02:00
Tomáš Votruba
ba8aa22253
skip Illuminate\Support\Collection magic for CompleteDynamicPro… ( #1721 )
...
skip Illuminate\Support\Collection magic for CompleteDynamicPropertiesRector
2019-07-10 16:43:15 +02:00
Tomáš Votruba
08837ff459
[CodingStyle] Add EncapsedStringsToSprintfRector ( #1722 )
...
[CodingStyle] Add EncapsedStringsToSprintfRector
2019-07-10 16:42:40 +02:00
Tomas Votruba
495063dc60
[CodingStyle] Add EncapsedStringsToSprintfRector
2019-07-10 16:42:22 +02:00
Tomáš Votruba
ee769031c5
Merge pull request #1723 from ravanscafi/static-method-args
...
Do not remove args when replacing to static calls
2019-07-10 16:03:06 +02:00
Ravan Scafi
15a974aac7
Empty compacts are forbidden, keep signature by replacing with empty array
2019-07-10 10:51:46 -03:00
Ravan Scafi
500a0404a0
Do not remove args when replacing to static calls
2019-07-10 10:15:12 -03:00
Tomas Votruba
704a32ee54
skip Illuminate\Support\Collection magic for CompleteDynamicPropertiesRector
2019-07-10 09:26:59 +02:00
Tomas Votruba
2f0396d462
add test case for #1595
2019-07-10 09:26:59 +02:00
Tomas Votruba
ca378451a6
resolve anonymous class to object
2019-07-09 22:43:53 +02:00
Tomas Votruba
bd6d976313
add test case for #1708
2019-07-09 22:43:53 +02:00
Tomas Votruba
21f72206b1
[DeadCode] Fix RemoveUnusedPrivatePropertyRector for nested chain method callable
2019-07-09 22:15:58 +02:00
Tomas Votruba
878e4054e1
[DeadCode] Add static, self and FQN type to RemoveUnusedPrivateMethodRector
2019-07-09 21:33:25 +02:00
Tomas Votruba
bb2f77f4b0
[DeadCode] Keep array method call in RemoveUnusedPrivateMethodRector
2019-07-09 19:45:03 +02:00
Tomas Votruba
6fdf08ab3c
[SOLID] Fix PrivatizeLocalClassConstantRector for used constant from single class [ closes #1634 ]
2019-07-09 18:51:04 +02:00
Tomas Votruba
d3115e8b8a
[CodeQuality] Fix StrlenZeroToIdenticalEmptyStringRector skipping non-matching binary
2019-07-09 17:06:58 +02:00
Ravan Scafi
f33531b878
Fix tests according to review and a few typos
2019-07-09 11:27:55 -03:00
Tomáš Votruba
2fabe47817
[FuncCall] Don't add $result to parse_str if second parameter i… ( #1709 )
...
[FuncCall] Don't add $result to parse_str if second parameter is already set
2019-07-09 15:45:37 +02:00
Tomáš Votruba
b60e48e6d3
Merge pull request #1696 from rectorphp/assert-request-debug
...
[PHPUnit][Symfony] Add AddMessageToEqualsResponseCodeRector
2019-07-09 10:29:28 +02:00
Ravan Scafi
8bf272e585
Fix multilevel array subsets
2019-07-08 18:13:31 -03:00
Ravan Scafi
aca9cfbd76
Don't add $result to parse_str if second parameter is already set
2019-07-08 15:11:34 -03:00
Ravan Scafi
7c9e153e6a
Don't mess with lines between docblock comment and var type.
2019-07-08 11:51:50 -03:00
Jeroen Smit
b8cb084573
Fixed some issues for RemoveZeroAndOneBinaryRector ( #1702 )
...
* Fixed issue where '1 / x' is considered to be equal to 'x'
Fixed issue where '($var + 1)' inside another expression is considered to be equal to '1'
Expanded unit test for ValueResolver
* Made tests more explicit
2019-07-06 22:53:29 +02:00
Tomáš Votruba
3cbf485ce6
Make sure parameter is not removed when a child class does use… ( #1701 )
...
Make sure parameter is not removed when a child class does use the parameter
2019-07-06 21:44:52 +02:00
Tomáš Votruba
7c3bbfa237
Fixed unintended removal of properties when used inside a trait ( #1703 )
...
Fixed unintended removal of properties when used inside a trait
2019-07-06 21:34:01 +02:00
Jeroen Smit
68cfefc36e
Fixed unintended removal of properties when used inside a trait
2019-07-06 17:52:02 +02:00
Jeroen Smit
50ceaa61d2
Make sure parameter is not removed when a child class does use the parameter
2019-07-06 17:42:22 +02:00
Tomáš Votruba
38c00ffb46
Merge pull request #1697 from ravanscafi/static-constant-call
...
[DeadCode] Allow static constant call on RemoveUnusedPrivateConstantRector
2019-07-06 16:07:10 +02:00
Ravan Scafi
8b121967f1
Add failing test showing the bug
2019-07-05 18:02:53 -03:00
Ravan Scafi
1673949cef
Fix NameTypeResolver@resolveFullyQualifiedName return type
2019-07-05 17:42:05 -03:00
Tomas Votruba
70cf0e33b2
[PHPUnit][Symfony] Add AddMessageToEqualsResponseCodeRector
2019-07-05 18:56:19 +03:00
Tomas Votruba
6095a810ad
fix cs
2019-07-05 18:12:37 +03:00
Tomas Votruba
5a898f593c
remove unused @var annotatoins
2019-07-05 18:04:11 +03:00
Tomas Votruba
8af6dd3dc3
[PHPStan] Add RemoveNonExistingVarAnnotationRector
2019-07-05 18:00:27 +03:00
Tomas Votruba
b001969944
[Doctrine] Add RemoveRepositoryFromEntityAnnotationRector
2019-07-05 13:52:26 +03:00
Tomas Votruba
fbf0aa275f
[Architecture] Add ConstructorInjectionToActionInjectionRector
2019-07-05 13:34:17 +03:00
Tomas Votruba
fadc28afa3
[CodeQuality] Add StrlenZeroToIdenticalEmptyStringRector
2019-07-05 00:31:24 +03:00
Tomas Votruba
d94e26822d
[CodeQuality] Add is_a with string true
2019-07-05 00:06:01 +03:00
Joseph Bielawski
6d23c758a4
[Symfony] Set few default common service names for Symfony App Analyzer
...
Allow to set custom ones via configuration
2019-07-04 13:55:37 +02:00
Joseph Bielawski
34e1a8d465
[Bugfix] PHPDoc type-hint resource
should not be used as PHP type-hint
2019-07-04 12:33:28 +02:00