for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dgame\Soap\Component;
use Dgame\Soap\Attribute\XmlAttribute;
/**
* Class Password
* @package Dgame\Soap\Component
*/
final class Password extends NamedNode
{
public function __construct(string $password)
parent::__construct();
$this->setAttribute(new XmlAttribute('Type', 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText'));
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.
$this->setValue($password);
}
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.