You've already forked postfixadmin
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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user