This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* If one or more params[] element exists in data[]. | |
* Our function will return the elements conserner | |
*/ | |
$params = [ | |
"nom" => 'titof', | |
"prenom" => 'edoe', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace DemandeBundle\Form; | |
class DemandeType extends AbstractType { | |
/** @var EntityManagerInterface $em */ | |
private $em; | |
/** | |
* | |
* @param EntityManagerInterface $em |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace AuthentificationBundle\Entity; | |
use AppBundle\Communs\Consts\StaticConst; | |
use AppBundle\Communs\Traits\DateTimeTools; | |
use Doctrine\ORM\Mapping as ORM; | |
/** | |
* Class utilisateurs |