Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mathieu
potage
Commits
12257088
Commit
12257088
authored
Jun 11, 2018
by
Mat
Browse files
doctrine:generate:entity: Info et Lettre
parent
b2af2d78
Changes
6
Hide whitespace changes
Inline
Side-by-side
src/APIBundle/Controller/OffreLegumesAPIController.php
100644 → 100755
View file @
12257088
File mode changed from 100644 to 100755
src/PotageBundle/Entity/Info.php
0 → 100755
View file @
12257088
<?php
namespace
PotageBundle\Entity
;
use
Doctrine\ORM\Mapping
as
ORM
;
/**
* Info
*
* @ORM\Table(name="info")
* @ORM\Entity(repositoryClass="PotageBundle\Repository\InfoRepository")
*/
class
Info
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private
$id
;
/**
* Get id
*
* @return int
*/
public
function
getId
()
{
return
$this
->
id
;
}
}
src/PotageBundle/Entity/Lettre.php
0 → 100755
View file @
12257088
<?php
namespace
PotageBundle\Entity
;
use
Doctrine\ORM\Mapping
as
ORM
;
/**
* Lettre
*
* @ORM\Table(name="lettre")
* @ORM\Entity(repositoryClass="PotageBundle\Repository\LettreRepository")
*/
class
Lettre
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private
$id
;
/**
* Get id
*
* @return int
*/
public
function
getId
()
{
return
$this
->
id
;
}
}
src/PotageBundle/Repository/InfoRepository.php
0 → 100755
View file @
12257088
<?php
namespace
PotageBundle\Repository
;
/**
* InfoRepository
*
* This class was generated by the Doctrine ORM. Add your own custom
* repository methods below.
*/
class
InfoRepository
extends
\
Doctrine\ORM\EntityRepository
{
}
src/PotageBundle/Repository/LettreRepository.php
0 → 100755
View file @
12257088
<?php
namespace
PotageBundle\Repository
;
/**
* LettreRepository
*
* This class was generated by the Doctrine ORM. Add your own custom
* repository methods below.
*/
class
LettreRepository
extends
\
Doctrine\ORM\EntityRepository
{
}
src/PotageBundle/Repository/OffreLegumesRepository.php
100644 → 100755
View file @
12257088
File mode changed from 100644 to 100755
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment