<?php abstract class DataTypes { const Null=0; const Integer=1; const Float=2; const Boolean=3; const String=4; const Collection=5; const Object=6; }