PHP code example of sensorario / kakebo-entities

1. Go to this page and download the library: Download sensorario/kakebo-entities 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/ */

    

sensorario / kakebo-entities example snippets


namespace Path\To\Your\Entity\Namespace;

use Doctrine\ORM\Mapping as ORM;
use Sensorario\KakeboEntities\Movement as KakeboMovement;

/**
 * Movement
 *
 * @ORM\Table(name="your_movement_table")
 * @ORM\Entity(repositoryClass="Path\To\Your\Repository\Class")
 */
class Movement extends KakeboMovement
{
    // change your Movement if needed
}