Write Setters and Getters for PHP
Just simple automation of writing Setters and Getters like Doctrine might use.
Start file
<?php
class Example {
firstProperty
secondItem
lastAttribute
}
End file
<?php
class Example {
private $firstProperty;
public function getFirstProperty()
{
return $this->firstProperty;
}
public function setFirstProperty($value)
{
$this->firstProperty = $value;
}
private $secondItem;
public function getSecondItem()
{
return $this->secondItem;
}
public function setSecondItem($value)
{
$this->secondItem = $value;
}
private $lastAttribute;
public function getLastAttribute()
{
return $this->lastAttribute;
}
public function setLastAttribute($value)
{
$this->lastAttribute = $value;
}
}
View Diff
4,6c4,38
< firstProperty
< secondItem
< lastAttribute
---
> private $firstProperty;
>
> public function getFirstProperty()
> {
> return $this->firstProperty;
> }
>
> public function setFirstProperty($value)
> {
> $this->firstProperty = $value;
> }
>
> private $secondItem;
>
> public function getSecondItem()
> {
> return $this->secondItem;
> }
>
> public function setSecondItem($value)
> {
> $this->secondItem = $value;
> }
>
> private $lastAttribute;
>
> public function getLastAttribute()
> {
> return $this->lastAttribute;
> }
>
> public function setLastAttribute($value)
> {
> $this->lastAttribute = $value;
> }
Solutions by @DoomedBunnies:
Unlock 2 remaining solutions by signing in and submitting your own entry