nkt/doctrine-columns

Code entities fast

0.1.1 2014-03-25 22:08 UTC

This package is auto-updated.

Last update: 2024-04-04 11:45:37 UTC


README

Why?

Because stop copy-paste code. Reuse it!

How!?

Just use column-trait, that you need.

use Nkt\Column;
use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity
 * @ORM\Table(name="books")
 */
class Book
{
    use Column\Id;
    use Column\Name;
    use Column\Description;
    use Column\Price;

    public function __construct($name, $description)
    {
        $this->setName($name);
        $this->setDescription($description);
    }
}

How I can help?

Add your popular column and get rid of copy-paste!

License

MIT