mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 09:31:51 +01:00
PHP Coding Standards Fixer > fix coding standard
This commit is contained in:
@@ -31,9 +31,7 @@ class F
|
||||
$this->username = $username;
|
||||
$this->gInstance = new G($firstName, $lastName);
|
||||
|
||||
/*
|
||||
* Called to avoid "Unused private method getAccountBalance" warning only
|
||||
*/
|
||||
// Called to avoid "Unused private method getAccountBalance" warning only
|
||||
$this->getAccountBalance();
|
||||
}
|
||||
|
||||
|
||||
@@ -17,11 +17,11 @@ namespace Meritoo\Test\Common\Utilities\Reflection;
|
||||
*/
|
||||
class H
|
||||
{
|
||||
const DOLOR = 'sit';
|
||||
public const DOLOR = 'sit';
|
||||
|
||||
const LOREM = 'ipsum';
|
||||
public const LOREM = 'ipsum';
|
||||
|
||||
const MAX_USERS = 5;
|
||||
public const MAX_USERS = 5;
|
||||
|
||||
const MIN_USERS = 2;
|
||||
public const MIN_USERS = 2;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user