for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
* @copyright Aimeos (aimeos.org), 2015-2020
* @package MShop
* @subpackage Customer
*/
namespace Aimeos\MShop\Customer\Item;
* Ezpublish customer item
*
class Ezpublish extends Standard implements Iface
{
private $password = null;
* Returns the password of the customer item
* @return string Password
public function getPassword() : string
return (string) $this->password;
}
* Sets the password of the customer item
* @param string $value password of the customer item
* @return \Aimeos\MShop\Customer\Item\Iface Customer item for chaining method calls
public function setPassword( string $value ) : \Aimeos\MShop\Customer\Item\Iface
if( $value !== '' && $value != $this->getPassword() )
$this->password = $value;
$this->setModified();
return $this;