PHP code example of fferriere / pomm-project-fos-user-bundle
1. Go to this page and download the library: Download fferriere/pomm-project-fos-user-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/ */
fferriere / pomm-project-fos-user-bundle example snippets
namespace MyBundle\Model;
use Fferriere\PommProjectFosUserBundle\Model\UserModel;
class MyModel extends UserModel
{
protected function initStructure()
{
parent::initStructure();
$this->structure->addField('id', 'uuid');
}
}