1
0
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:
Adrien Crivelli
2018-01-26 23:45:57 +09:00
parent 943c5a94ee
commit 15df6c1d7b
63 changed files with 2817 additions and 2534 deletions

View File

@ -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;
}
}