This commit is contained in:
Tomas Votruba 2019-05-26 21:26:33 +02:00
parent 224bc33174
commit b16ebe6be2

View File

@ -1,4 +1,4 @@
# All 299 Rectors Overview
# All 300 Rectors Overview
- [Projects](#projects)
- [General](#general)
@ -769,6 +769,28 @@ Joins concat of 2 strings
<br>
### `CompleteDynamicPropertiesRector`
- class: `Rector\CodeQuality\Rector\Class_\CompleteDynamicPropertiesRector`
Add missing dynamic properties
```diff
class SomeClass
{
+ /**
+ * @var int
+ */
+ public $value;
public function set()
{
$this->value = 5;
}
}
```
<br>
## CodingStyle
### `SplitDoubleAssignRector`