for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\PluginBundle\ImsLti\Entity;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Table(name: 'plugin_ims_lti_platform')]
#[ORM\Entity]
class Platform
{
#[ORM\Column(name: 'public_key', type: 'text')]
public string $publicKey;
#[ORM\Column(name: 'id', type: 'integer')]
#[ORM\Id]
#[ORM\GeneratedValue]
protected ?int $id;
#[ORM\Column(name: 'kid', type: 'string')]
private string $kid;
#[ORM\Column(name: 'private_key', type: 'text')]
private string $privateKey;
public function getId(): ?int
return $this->id;
}
public function setId(int $id): static
$this->id = $id;
return $this;
public function getKid(): string
return $this->kid;
public function setKid(string $kid): void
$this->kid = $kid;
public function getPrivateKey(): string
return $this->privateKey;
public function setPrivateKey(string $privateKey): static
$this->privateKey = $privateKey;