Deon George
f19c5594d5
All checks were successful
Create Docker Image / Test Application (x86_64) (push) Successful in 32s
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m23s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 3m38s
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s
18 lines
296 B
PHP
18 lines
296 B
PHP
<?php
|
|
|
|
namespace App\Classes\LDAP\Attribute\Password;
|
|
|
|
final class Clear extends Base
|
|
{
|
|
public const key = 'Clear';
|
|
|
|
public function compare(string $source,string $compare): bool
|
|
{
|
|
return $source === $compare;
|
|
}
|
|
|
|
public function encode(string $password): string
|
|
{
|
|
return $password;
|
|
}
|
|
} |