up to sf 7

This commit is contained in:
Tykayn 2025-02-09 16:45:35 +01:00 committed by tykayn
parent a39b6239b0
commit 501795a8fa
16586 changed files with 19384005 additions and 0 deletions

65
v1/old/Entity/Stuff.php~ Executable file
View file

@ -0,0 +1,65 @@
<?php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Stuff
*
* @ORM\Table(name="stuff")
* @ORM\Entity(repositoryClass="AppBundle\Repository\StuffRepository")
*/
class Stuff
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="truc", type="string", length=255)
*/
private $truc;
/**
* Get id
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Set truc
*
* @param string $truc
*
* @return Stuff
*/
public function setTruc($truc)
{
$this->truc = $truc;
return $this;
}
/**
* Get truc
*
* @return string
*/
public function getTruc()
{
return $this->truc;
}
}