Class Php

class Employee { 
    const CATEGORY_WORKER = 0; 
    const CATEGORY_SUPERVISOR = 1; 
    const CATEGORY_MANAGER = 2; 
    
}
?>