MAJ Global V2

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

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

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

@ -1,15 +1,15 @@
<?php <?php
namespace Vocabulary; namespace model;
class Vocabulary class Vocabulary
{ {
protected frozen String $id; frozen protected String $id;
protected String $nom; protected String $nom;
protected Picture $picture; 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->id = $id;
$this->nom = $nom; $this->nom = $nom;

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