/module/Provisioning/src/Provisioning/Model/DeviceType.php
https://gitlab.com/jeann2015/nexus · PHP · 49 lines · 15 code · 12 blank · 22 comment · 0 complexity · ce8763c21feaeba0d0d6852df8a484bf MD5 · raw file
- <?php
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- namespace Provisioning\Model;
- use Provisioning\InputFilter\DeviceTypeInputFilter;
- /**
- * Description of Device
- *
- * @author rodolfo
- */
- class DeviceType extends DeviceTypeInputFilter {
-
- public $type;
- /**
- * Gets the value of type.
- *
- * @return mixed
- */
- public function getType()
- {
- return $this->type;
- }
- /**
- * Sets the value of type.
- *
- * @param mixed $type the type
- *
- * @return self
- */
- public function setType($type)
- {
- $this->type = $type;
- return $this;
- }
- }