for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the core-library package.
*
* (c) 2019 WEBEWEB
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace WBW\Library\Core\Model\Attribute;
/**
* String house number trait.
* @author webeweb <https://github.com/webeweb/>
* @package WBW\Library\Core\Model\Attribute
trait StringHouseNumberTrait {
* House number.
* @var string
protected $houseNumber;
* Get the house number.
* @return string Returns the house number.
public function getHouseNumber() {
return $this->houseNumber;
}
* Set the house number.
* @param string $houseNumber The house number.
public function setHouseNumber($houseNumber) {
$this->houseNumber = $houseNumber;
return $this;