added back .gitignores

This commit is contained in:
Taylor Otwell
2011-08-03 22:15:08 -05:00
parent f0f3dffc11
commit eebbc08293
15 changed files with 10 additions and 29 deletions

0
application/models/.gitignore vendored Normal file
View File

View File

@@ -1,19 +0,0 @@
<?php
namespace Entities;
class User extends \Eloquent {
public function friends()
{
return $this->has_many('Entities\\Friend');
}
public function roles()
{
return $this->has_and_belongs_to_many('Role');
}
}
class Friend extends \Eloquent {}

View File

@@ -1,3 +0,0 @@
<?php
class Role extends \Eloquent {}