for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* PHP Billing Library
*
* @link https://github.com/hiqdev/php-billing
* @package php-billing
* @license BSD-3-Clause
* @copyright Copyright (c) 2017, HiQDev (http://hiqdev.com/)
*/
namespace hiqdev\php\billing;
* Resource Type.
* @author Andrii Vasyliev <[email protected]>
class Type implements TypeInterface
{
* @var integer
public $id;
* @var string
public $name;
public function __construct($name)
$this->name = $name;
}
* @return string
public function getName()
return $this->name;