channaveer / EntityGenerator

PHP Based Entity Generator - Used to generate entities from existing database
13 stars 5 forks source link

comments and datatypes #2

Open degr opened 6 years ago

degr commented 6 years ago

It would be great if you will add datatype comments, something like this:

/**
 * @var int
 */ 
private $id;

/**
 * @return int
 */
public function getId() {
    return $this->id;
}
channaveer commented 6 years ago

@degr Sure I will work on that.