php-test/classes/item.class.php

19 lines
193 B
PHP
Raw Normal View History

2019-10-05 14:54:19 +00:00
<?php
namespace TestProject;
/**
* Item class
*/
class Item {
protected $id_int;
/**
* Get ID of Item
*
* @return int ID
*/
public function getID(){
return $this->id_int;
}
}