1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-08-06 06:42:37 +03:00

bumping php-cs-fixer; formatting rules change slightly

This commit is contained in:
David Goodwin
2022-06-28 13:31:37 +01:00
parent 3472897527
commit b18ed591a2
38 changed files with 76 additions and 61 deletions

View File

@@ -1,24 +1,23 @@
<?php
class Crypt {
/**
* @access private
*/
protected $plain = '';
/**
* @access private
*/
protected $password;
protected $size;
public function __construct($plaintext) {
$this->plain = $plaintext;
}
/**
* @return bool
*/