ILIAS
release_8 Revision v8.23
◀ ilDoc Overview
Password.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
/* Copyright (c) 2018 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
6
7
namespace
ILIAS\Data
;
8
16
class
Password
17
{
18
private
string
$pass
;
19
20
public
function
__construct
(
string
$pass)
21
{
22
$this->pass =
$pass
;
23
}
24
25
public
function
toString
(): string
26
{
27
return
$this->pass
;
28
}
29
}
ILIAS\Data\Password\__construct
__construct(string $pass)
Definition:
Password.php:20
ILIAS\Data\Password
A password is used as part of credentials for authentication.
Definition:
Password.php:16
ILIAS\Data\Password\toString
toString()
Definition:
Password.php:25
ILIAS\Data\Password\$pass
string $pass
Definition:
Password.php:18
ILIAS\Data
Definition:
Alphanumeric.php:11
src
Data
Password.php
Generated on Wed Sep 3 2025 22:02:53 for ILIAS by
1.8.13 (using
Doxyfile
)