www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

Word.php (323B)


      1 <?php
      2 /* 
      3  * To change this template, choose Tools | Templates
      4  * and open the template in the editor.
      5  */
      6 
      7 /**
      8  * Description of Word
      9  *
     10  * @author John CHARRON
     11  */
     12 class Word {
     13     private $word;
     14     private $eid;
     15 
     16     function __construct($word, $eid){
     17         $this->word = $word;
     18         $this->eid = $eid;
     19     }
     20 }
     21 ?>