Current Behaviour
Change tab to space in DocBlock and property definition

Minimal PHP Code Causing Issue
<?php
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity()
* @ORM\Table(name="slides")
**/
class Slide
{
/**
* @ORM\Column(type="boolean", nullable=FALSE, options={"default": 1})
* @var bool
*/
protected $active = true;
}
Expected Behaviour
Current tab should not be modified. Especially in this case when there is only set for refactoring class name.
Btw. why is FALSE transform to lowercase? Is there some configuration in rector for this?
Current Behaviour
Change tab to space in DocBlock and property definition

Minimal PHP Code Causing Issue
Expected Behaviour
Current tab should not be modified. Especially in this case when there is only set for refactoring class name.
Btw. why is FALSE transform to lowercase? Is there some configuration in rector for this?