Browse Source

Ignored files.

xaav 13 years ago
parent
commit
e5f71d097c
3 changed files with 25 additions and 0 deletions
  1. 3 0
      .gitignore
  2. 2 0
      app/.gitignore
  3. 20 0
      src/Packagist/WebBundle/Entity/User.php

+ 3 - 0
.gitignore

@@ -4,3 +4,6 @@ app/cache/*
 app/logs/*
 build/
 vendor/
+/.settings
+/.buildpath
+/.project

+ 2 - 0
app/.gitignore

@@ -0,0 +1,2 @@
+/cache
+/logs

+ 20 - 0
src/Packagist/WebBundle/Entity/User.php

@@ -0,0 +1,20 @@
+<?php
+
+namespace Packagist\WebBundle\Entity;
+
+use FOS\UserBundle\Entity\User as BaseUser;
+use Doctrine\ORM\Mapping as ORM;
+
+/**
+ * @ORM\Entity
+ * @ORM\Table(name="fos_user")
+ */
+class User extends BaseUser
+{
+    /**
+     * @ORM\Id
+     * @ORM\Column(type="integer")
+     * @ORM\generatedValue(strategy="AUTO")
+     */
+    protected $id;
+}