ad0a8c53fa
Right now, when generating entities, a column of type 'guid' will generate the following PHPDoc: ``` /** * Get id * * @return guid */ public function getId() {...} ``` Since guid is not a valid PHP type, this throws a warning in PHPStorm, and I assume most IDEs. Adding the type to the type alias list fixes the problem.