spec\LdapTools\Object\LdapObjectCreatorSpec::it_should_set_parameters_for_the_attributes_sent_to_ldap PHP Метод

it_should_set_parameters_for_the_attributes_sent_to_ldap() публичный Метод

    function it_should_set_parameters_for_the_attributes_sent_to_ldap($connection)
    {
        $this->addOperation->setLocation('dc=foo,dc=bar');
        $connection->execute($this->addOperation)->willReturn(true);
        $this->createUser()->with(['username' => '%foo%', 'password' => '%bar%'])->in('dc=foo,dc=bar')->setParameter('foo', 'somedude')->setParameter('bar', '12345');
        $this->execute();
    }