You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-07-29 22:41:11 +03:00
Reformat everything with PHP-Cs-Fixer
This commit is contained in:
@ -1,34 +1,32 @@
|
||||
<?php
|
||||
|
||||
class Crypt {
|
||||
|
||||
/**
|
||||
* @access private
|
||||
*/
|
||||
protected $plain = '';
|
||||
|
||||
/**
|
||||
* @access private
|
||||
*/
|
||||
protected $password;
|
||||
|
||||
protected $size;
|
||||
|
||||
|
||||
function __construct($plaintext) {
|
||||
$this->plain = $plaintext;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return true/false boolean
|
||||
*/
|
||||
public function crypt($algorithm) {
|
||||
return true;
|
||||
}
|
||||
|
||||
public function get() {
|
||||
return $this->password;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
<?php
|
||||
|
||||
class Crypt {
|
||||
|
||||
/**
|
||||
* @access private
|
||||
*/
|
||||
protected $plain = '';
|
||||
|
||||
/**
|
||||
* @access private
|
||||
*/
|
||||
protected $password;
|
||||
|
||||
protected $size;
|
||||
|
||||
|
||||
public function __construct($plaintext) {
|
||||
$this->plain = $plaintext;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return true/false boolean
|
||||
*/
|
||||
public function crypt($algorithm) {
|
||||
return true;
|
||||
}
|
||||
|
||||
public function get() {
|
||||
return $this->password;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user