PHP code example of friendsofsulu / maker-bundle

1. Go to this page and download the library: Download friendsofsulu/maker-bundle 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/ */

    

friendsofsulu / maker-bundle example snippets




declare(strict_types=1);

namespace App\Entity;

class Changelog
{
    public const RESOURCE_KEY = 'changelog';

    public ?int $id = null;
    public string $name = '';
    public string $description = '';
}