PHP code example of jonathanlight / meta-entity-builder-bundle

1. Go to this page and download the library: Download jonathanlight/meta-entity-builder-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/ */

    

jonathanlight / meta-entity-builder-bundle example snippets


class User
{
    // ... generated properties and methods ...

    // @custom-code-start
    // Add your custom methods here — this block is preserved on regeneration
    public function getFullName(): string
    {
        return $this->firstName . ' ' . $this->lastName;
    }
    // @custom-code-end
}