| Total Complexity | 4 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class Ezpublish extends Standard implements Iface |
||
| 21 | { |
||
| 22 | private $password = null; |
||
| 23 | |||
| 24 | |||
| 25 | /** |
||
| 26 | * Returns the password of the customer item |
||
| 27 | * |
||
| 28 | * @return string Password |
||
| 29 | */ |
||
| 30 | public function getPassword() : string |
||
| 33 | } |
||
| 34 | |||
| 35 | |||
| 36 | /** |
||
| 37 | * Sets the password of the customer item |
||
| 38 | * |
||
| 39 | * @param string $value password of the customer item |
||
| 40 | * @return \Aimeos\MShop\Customer\Item\Iface Customer item for chaining method calls |
||
| 41 | */ |
||
| 42 | public function setPassword( string $value ) : \Aimeos\MShop\Customer\Item\Iface |
||
| 53 |