for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AcquiroPay\Models\Entities;
class Agent extends Entity
{
/**
* @var string
*/
private $name;
* @return string
public function getName(): string
return $this->name;
}
* @param string $name
public function setName(string $name)
$this->name = $name;