diff --git a/Project/php/Vocabulaire.php b/Project/php/Vocabulaire.php new file mode 100755 index 0000000..d5660e8 --- /dev/null +++ b/Project/php/Vocabulaire.php @@ -0,0 +1,24 @@ +id = $id; + $this->nom = $nom; + $this->picture = $picture; + $this->creator = $creator; + } + + protected function changePicture(Picture $newImg){ + $this->picture = $newImg; + } +} +