I have shortcut for creating getter method and here is my snippet code right now:
public function get${1:PropertyName}() {
return \$this->${1:propertyName};
}
$0
Output I'm looking for:
public function getAreaCode() {
return $this->areaCode;
}
So the question is, how to automatically transform input's first letter into lowercase, but only on the second line?