PHP code example of fernet / doctrine

1. Go to this page and download the library: Download fernet/doctrine library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

fernet / doctrine example snippets



namespace App\Entity;

/** @Entity */
class Post
{
    /** @Id @Column(type="integer") @GeneratedValue */
    public int $id;
    /** @Column(type="string") */
    public string $title;
    /** @Column(type="text") */
    public string $content;
}


namespace App\Component;

use App\Entity\Post;
use Doctrine\ORM\EntityManager;

class ShowPost
{
    public $id;

    private EntityManager $entityManager;

    public function __construct(EntityManager $entityManager)
    {
        $this->entityManager = $entityManager;
    }

    public function __toString(): string
    {
        $post = $this->entityManager->find(Post::class, $this->id);
        return "<h1>{$post->title}</h1><section>{$post->content}</section>";
    }
}


namespace App\Repository;

use App\Entity\Post;
use DoctrineFernet\EntityRepository;

class PostRepository extends EntityRepository
{
    public function getEntity(): string
    {
        return Post::class;
    }
}