chamilo/chamilo-lms

View on GitHub
src/LtiBundle/Entity/Platform.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/* For licensing terms, see /license.txt */

declare(strict_types=1);

namespace Chamilo\LtiBundle\Entity;

use Doctrine\ORM\Mapping as ORM;

#[ORM\Table(name: '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 = null;
    #[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): static
    {
        $this->kid = $kid;

        return $this;
    }

    public function getPrivateKey(): string
    {
        return $this->privateKey;
    }

    public function setPrivateKey(string $privateKey): static
    {
        $this->privateKey = $privateKey;

        return $this;
    }
}