PHP code example of gollumsf / doctrine-arraypipe

1. Go to this page and download the library: Download gollumsf/doctrine-arraypipe 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/ */

    

gollumsf / doctrine-arraypipe example snippets


namespace App\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Table()
 */
class Entity {
	
	/**
	 * @ORM\Column(type="array_pipe")
	 * @var int
	 */
	private $arrayPipe = [
		'ROLE_EXAMPLE', 'ROLE_USER', 'ROLE_ADMIN'
	];
	// Storage data in database with value: ROLE_EXAMPLE|ROLE_USER|ROLE_ADMIN
	
	
	/////////
	// ... //
	/////////
	
}
yaml
doctrine:
    dbal:
        types:
            array_pipe: GollumSF\Doctrine\ArrayPipe