| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- class EmployeeService
- {
- public static $employee;
- /**
- * @param Employee $item
- * @return string
- */
- public function createEmployee(Employee $item)
- {
- $item->id = uniqid();
- self::$employee = $item;
- return $item->id;
- }
- }
- class Employee
- {
- /**
- * @var int
- */
- public $id;
- /**
- * @var string
- */
- public $firstname;
- /**
- * @var string
- */
- public $lastname;
- /**
- * @var string
- */
- public $title;
- /**
- * @var int
- */
- public $departmentid;
- /**
- * @var string
- */
- public $officephone;
- /**
- * @var string
- */
- public $cellphone;
- /**
- * @var string
- */
- public $email;
- /**
- * @var string
- */
- public $street;
- /**
- * @var string
- */
- public $city;
- /**
- * @var string
- */
- public $state;
- /**
- * @var string
- */
- public $zipcode;
- /**
- * @var string
- */
- public $office;
- /**
- * @var string
- */
- public $photofile;
- }
|