for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Fhp\DataTypes;
/**
* Class Kik
* @package Fhp\DataTypes
*/
class Kik
{
* @var string
protected $countryCode;
protected $bankCode;
* Kik constructor.
*
* @param string $countryCode
* @param string $bankCode
public function __construct($countryCode, $bankCode)
$this->countryCode = (string) $countryCode;
$this->bankCode = (string) $bankCode;
}
* @return string
public function toString()
return $this->countryCode . ':' . $this->bankCode;
public function __toString()
return $this->toString();