1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-11-23 11:22:22 +03:00

phpcs insists on some brace changes

This commit is contained in:
David Goodwin
2021-04-13 21:19:16 +01:00
parent bbec16aac1
commit 2edabc3e03
60 changed files with 926 additions and 466 deletions

View File

@@ -16,18 +16,21 @@ class Crypt
protected $size;
public function __construct($plaintext) {
public function __construct($plaintext)
{
$this->plain = $plaintext;
}
/**
* @return bool
*/
public function crypt($algorithm) {
public function crypt($algorithm)
{
return true;
}
public function get() {
public function get()
{
return $this->password;
}
}