for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Beccha\OfxParser\Entity;
final class Institution
{
private string $id;
private string $name;
public function __construct(
string $id,
string $name
) {
$this->id = $id;
$this->name = $name;
}
public function getId(): string
return $this->id;
public function getName(): string
return $this->name;