PHP code example of schvoy / base-entity-bundle

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

    

schvoy / base-entity-bundle example snippets


class <your-entity-name> extends UuidBasedEntity

class <your-entity-name> extends UlidBasedEntity

class <your-entity-name> extends IdBasedEntity

# Id entity traits
use IdBasedEntityTrait;
use UuidBasedEntityTrait;
use UliddBasedEntityTrait;

# Doctrine Behavior traits
use BlameableTrait;
use SoftDeleteableTrait;
use TimestampableTrait;