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) 2020 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 hash "MD5" trait.
* @author webeweb <https://github.com/webeweb/>
* @package WBW\Library\Core\Model\Attribute
trait StringHashMd5Trait {
* Hash "MD5".
* @var string
protected $hashMd5;
* Get the hash "MD5".
* @return string Returns the hash "MD5".
public function getHashMd5() {
return $this->hashMd5;
}
* Set the hash "MD5".
* @param string $hashMd5 The hash "MD5".
public function setHashMd5($hashMd5) {
$this->hashMd5 = $hashMd5;
return $this;