Skip to content

Allow the use of a pfazzi/isbn ISBN as Doctrine field type.

Notifications You must be signed in to change notification settings

pfazzi/isbn-doctrine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

isbn-doctrine

The pfazzi/isbn-doctrine package provides the ability to use pfazzi/isbn as a Doctrine field type.

Installation

The preferred method of installation is via Packagist and Composer. Run the following command to install the package and add it as a requirement to your project's composer.json:

composer require pfazzi/isbn-doctrine

Examples

Configuration

To configure Doctrine to use pfazzi/isbn as a field type, you'll need to set up the following in your bootstrap:

\Doctrine\DBAL\Types\Type::addType('isbn', 'Pfazzi\Isbn\Doctrine\IsbnType');

In Symfony:

# app/config/config.yml
doctrine:
   dbal:
       types:
           isbn: Pfazzi\Isbn\Doctrine\IsbnType

Then, in your models, you may annotate properties by setting the @Column type to isbn. Doctrine will handle the rest.

/**
 * @ORM\Entity()
 */
class Book
{
    /**
     * @ORM\Id()
     * @ORM\Column(type="isbn")
     *
     * @var Isbn
     */
    private $isbn;
    
    public function __construct(Isbn $isbn)
    {
        $this->isbn = $isbn;
    }

    public function getIsbn(): Isbn
    {
        return $this->isbn;
    }
}

About

Allow the use of a pfazzi/isbn ISBN as Doctrine field type.

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Languages