PHP code example of marcin-orlowski / lombok-php
1. Go to this page and download the library: Download marcin-orlowski/lombok-php library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
marcin-orlowski / lombok-php example snippets
class Entity {
protected int $id;
protected string $name;
protected ?int $age;
public function getId(): int
{
return $this->id;
}
public function getName(): string
{
return $this->name;
}
public function setName(string $name): static
{
$this->name = $name;
return $this;
}
public function getAge(): ?int
{
return $this->age;
}
public function setAge(?int $age): static
{
$this->age = $age;
return $this;
}
}
use Lombok\Getter;
use Lombok\Setter;
#[Setter, Getter]
class Entity extends \Lombok\Helper {
#[Getter]
protected int $id;
protected string $name;
protected ?int $age;
}