atom-php-getters-setters
atom-php-getters-setters copied to clipboard
Respect identation
This package is very useful! But the generator don't respect the indentation of the class.
Example:
// class example
class Foo{
private $bar;
}
The package will make:
// class example
class Foo{
private $bar;
public function getBar() {
return $this->bar;
}
public function setBar($bar) {
$this->bar = $bar;
}
}
Whilst indenting it yourself is certainly easy, I would really like this as a feature :+1: