GetStringHelper.php in Lightweight Directory Access Protocol (LDAP) 8.4
Namespace
Drupal\Tests\ldap_user\KernelFile
ldap_user/tests/src/Kernel/GetStringHelper.phpView source
<?php
declare (strict_types=1);
namespace Drupal\Tests\ldap_user\Kernel;
/**
* Helper function for getString().
*/
class GetStringHelper {
/**
* Value.
*
* @var mixed
*/
public $value;
/**
* Return $value as string.
*
* @return string
* Value.
*/
public function getString() : string {
return (string) $this->value;
}
}
Classes
Name | Description |
---|---|
GetStringHelper | Helper function for getString(). |