MAJ Global V2

php
Antoine JOURDAIN 2 years ago
parent 8643948bd2
commit 4becb88509

@ -6,7 +6,7 @@
"psr-4": {
"controleur\\": "controleur/",
"config\\": "config/",
"modeles\\": "modeles/"
"model\\": "model/"
}
}
}

@ -1,6 +1,6 @@
<?php
namespace modeles;
namespace model;
class User
{

@ -1,15 +1,15 @@
<?php
namespace Vocabulary;
namespace model;
class Vocabulary
{
protected frozen String $id;
frozen protected String $id;
protected String $nom;
protected Picture $picture;
protected frozen User $creator;
frozen protected User $creator;
public function __construct(string $id, string $nom, picture $picture, user $creator)
public function __construct(string $id, string $nom, Picture $picture, user $creator)
{
$this->id = $id;
$this->nom = $nom;

@ -1,7 +0,0 @@
<?php
namespace modeles;
class Group
{
}
Loading…
Cancel
Save