for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SomeWork\Minjust\Entity;
/**
* @see \SomeWork\Minjust\Tests\Unit\Entity\LawFormationTest
*/
class LawFormation
{
* @var string
protected $organizationalForm = '';
protected $name = '';
protected $address = '';
protected $phone = '';
protected $email = '';
* @return string
public function getOrganizationalForm(): string
return $this->organizationalForm ?: '';
}
* @param string $organizationalForm
*
* @return LawFormation
public function setOrganizationalForm(string $organizationalForm): LawFormation
$this->organizationalForm = $organizationalForm;
return $this;
public function getName(): string
return $this->name ?: '';
* @param string $name
public function setName(string $name): LawFormation
$this->name = $name;
public function getAddress(): string
return $this->address ?: '';
* @param string $address
public function setAddress(string $address): LawFormation
$this->address = $address;
public function getPhone(): string
return $this->phone ?: '';
* @param string $phone
public function setPhone(string $phone): LawFormation
$this->phone = $phone;
public function getEmail(): string
return $this->email ?: '';
* @param string $email
public function setEmail(string $email): LawFormation
$this->email = $email;