@@ -41,15 +41,15 @@ |
||
41 | 41 | { |
42 | 42 | $ret = $core->unlock_account($this->argument('username')); |
43 | 43 | $table = new Table($this->output); |
44 | - $read_enc = json_decode( $ret); |
|
44 | + $read_enc = json_decode($ret); |
|
45 | 45 | $time = $read_enc->last_attemps; |
46 | 46 | $attemps = $read_enc->attemps; |
47 | 47 | $ip = $read_enc->ip; |
48 | 48 | $table->setRows([ |
49 | - ['<fg=cyan>Login attemps', $attemps], |
|
50 | - ['<fg=cyan>Last login attemps',$time], |
|
51 | - ['<fg=cyan>Last IP Address',empty(end($ip))? "unknown":end($ip)], |
|
52 | - ['<fg=cyan>Unlocked at',date('Y-m-d H:i:s', time())], |
|
49 | + ['<fg=cyan>Login attemps', $attemps], |
|
50 | + ['<fg=cyan>Last login attemps', $time], |
|
51 | + ['<fg=cyan>Last IP Address', empty(end($ip)) ? "unknown" : end($ip)], |
|
52 | + ['<fg=cyan>Unlocked at', date('Y-m-d H:i:s', time())], |
|
53 | 53 | ]); |
54 | 54 | $table->render(); |
55 | 55 | // $this->line('<fg=yellow>Valid input is lock, unlock, and attemps.'); |
@@ -41,14 +41,14 @@ |
||
41 | 41 | { |
42 | 42 | $ret = $core->check_account($this->argument('username')); |
43 | 43 | $table = new Table($this->output); |
44 | - $read_enc = json_decode( $ret); |
|
44 | + $read_enc = json_decode($ret); |
|
45 | 45 | $time = $read_enc->last_attemps; |
46 | 46 | $attemps = $read_enc->attemps; |
47 | 47 | $ip = $read_enc->ip; |
48 | 48 | $table->setRows([ |
49 | - ['<fg=yellow>Login attemps', $attemps], |
|
50 | - ['<fg=yellow>Last login attemps',$time], |
|
51 | - ['<fg=yellow>Last IP Address',empty(end($ip))? "unknown":end($ip)],]); |
|
49 | + ['<fg=yellow>Login attemps', $attemps], |
|
50 | + ['<fg=yellow>Last login attemps', $time], |
|
51 | + ['<fg=yellow>Last IP Address', empty(end($ip)) ? "unknown" : end($ip)], ]); |
|
52 | 52 | $table->render(); |
53 | 53 | // $this->line('<fg=yellow>Valid input is lock, unlock, and attemps.'); |
54 | 54 |
@@ -40,14 +40,14 @@ |
||
40 | 40 | public function handle(Core $core) |
41 | 41 | { |
42 | 42 | $this->line('Cleaning locked user...'); |
43 | - if($core->clear_all()){ |
|
43 | + if ($core->clear_all()) { |
|
44 | 44 | $table = new Table($this->output); |
45 | 45 | $table->setRows([ |
46 | 46 | ['<fg=green>Locked Account(s) Cleared.'], |
47 | 47 | |
48 | 48 | ]); |
49 | 49 | $table->render(); |
50 | - } else{ |
|
50 | + } else { |
|
51 | 51 | $this->line('<fg=red> Clearing failed.'); |
52 | 52 | } |
53 | 53 | } |
@@ -40,14 +40,14 @@ |
||
40 | 40 | public function handle(Core $core) |
41 | 41 | { |
42 | 42 | $this->line('Locking '.$this->argument('username').'...'); |
43 | - if($core->lock_account($this->argument('username'))!="error"){ |
|
43 | + if ($core->lock_account($this->argument('username')) != "error") { |
|
44 | 44 | $table = new Table($this->output); |
45 | 45 | $table->setRows([ |
46 | 46 | ['<fg=green>'.$this->argument('username').' successfully locked.'], |
47 | 47 | |
48 | 48 | ]); |
49 | 49 | $table->render(); |
50 | - } else{ |
|
50 | + } else { |
|
51 | 51 | $this->line('<fg=red> Locking failed.'); |
52 | 52 | } |
53 | 53 | } |
@@ -56,8 +56,8 @@ discard block |
||
56 | 56 | $conf = config('irfa.lockout'); |
57 | 57 | |
58 | 58 | $this->line('<fg=default>-------------------------------------------------------------------------------'); |
59 | - $this->line('<fg=yellow>Commands'); |
|
60 | - $table = new Table($this->output); |
|
59 | + $this->line('<fg=yellow>Commands'); |
|
60 | + $table = new Table($this->output); |
|
61 | 61 | $table->setRows([ |
62 | 62 | ['<fg=cyan>php artisan lockout:lock {username}','<fg=default>locking account'], |
63 | 63 | ['<fg=cyan>php artisan lockout:unlock {username}','<fg=default>unlocking account'], |
@@ -65,8 +65,8 @@ discard block |
||
65 | 65 | ['<fg=cyan>php artisan lockout:is-locked {username}','<fg=default>checking account (return boolean)'], |
66 | 66 | ['<fg=cyan>php artisan lockout:clear','<fg=default>unlocking all account']] |
67 | 67 | ); |
68 | - $table->render(); |
|
69 | - $this->line('<fg=default>-------------------------------------------------------------------------------'); |
|
68 | + $table->render(); |
|
69 | + $this->line('<fg=default>-------------------------------------------------------------------------------'); |
|
70 | 70 | $this->line('<fg=yellow>Configuration'); |
71 | 71 | foreach($conf as $key => $val){ |
72 | 72 | if(is_array($val)){ |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $row[] = ['<fg=default>'.$key,' <fg=cyan>'.$vl]; |
80 | 80 | } |
81 | 81 | // dd($row); |
82 | - $table = new Table($this->output); |
|
82 | + $table = new Table($this->output); |
|
83 | 83 | $table->setRows($row); |
84 | 84 | $table->render(); |
85 | 85 | } |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | $this->informasi(); |
42 | 42 | } |
43 | 43 | |
44 | - private function informasi(){ |
|
44 | + private function informasi() { |
|
45 | 45 | $this->line(" _____ __ _ _ _ |
46 | 46 | |_ _| / _| | | | | | | |
47 | 47 | | | _ __| |_ __ _ ______| | ___ ___| | _____ _ _| |_ |
@@ -59,24 +59,24 @@ discard block |
||
59 | 59 | $this->line('<fg=yellow>Commands'); |
60 | 60 | $table = new Table($this->output); |
61 | 61 | $table->setRows([ |
62 | - ['<fg=cyan>php artisan lockout:lock {username}','<fg=default>locking account'], |
|
63 | - ['<fg=cyan>php artisan lockout:unlock {username}','<fg=default>unlocking account'], |
|
64 | - ['<fg=cyan>php artisan lockout:check {username}','<fg=default>checking account with details'], |
|
65 | - ['<fg=cyan>php artisan lockout:is-locked {username}','<fg=default>checking account (return boolean)'], |
|
66 | - ['<fg=cyan>php artisan lockout:clear','<fg=default>unlocking all account']] |
|
62 | + ['<fg=cyan>php artisan lockout:lock {username}', '<fg=default>locking account'], |
|
63 | + ['<fg=cyan>php artisan lockout:unlock {username}', '<fg=default>unlocking account'], |
|
64 | + ['<fg=cyan>php artisan lockout:check {username}', '<fg=default>checking account with details'], |
|
65 | + ['<fg=cyan>php artisan lockout:is-locked {username}', '<fg=default>checking account (return boolean)'], |
|
66 | + ['<fg=cyan>php artisan lockout:clear', '<fg=default>unlocking all account']] |
|
67 | 67 | ); |
68 | 68 | $table->render(); |
69 | 69 | $this->line('<fg=default>-------------------------------------------------------------------------------'); |
70 | 70 | $this->line('<fg=yellow>Configuration'); |
71 | - foreach($conf as $key => $val){ |
|
72 | - if(is_array($val)){ |
|
73 | - foreach($val as $v){ |
|
71 | + foreach ($conf as $key => $val) { |
|
72 | + if (is_array($val)) { |
|
73 | + foreach ($val as $v) { |
|
74 | 74 | $vl .= $v.", "; |
75 | 75 | } |
76 | - } else{ |
|
76 | + } else { |
|
77 | 77 | $vl = $val; |
78 | 78 | } |
79 | - $row[] = ['<fg=default>'.$key,' <fg=cyan>'.$vl]; |
|
79 | + $row[] = ['<fg=default>'.$key, ' <fg=cyan>'.$vl]; |
|
80 | 80 | } |
81 | 81 | // dd($row); |
82 | 82 | $table = new Table($this->output); |
@@ -45,13 +45,13 @@ |
||
45 | 45 | if($lock){ |
46 | 46 | $table->setRows([ |
47 | 47 | ['<fg=yellow>'.$username.' is locked',]]); |
48 | - $table->render(); |
|
48 | + $table->render(); |
|
49 | 49 | $this->line('<fg=default>Run <fg=cyan>php artisan lockout:unlock '.$username.'<fg=default> to unlock account.'); |
50 | 50 | } else{ |
51 | - $table->setRows([ |
|
51 | + $table->setRows([ |
|
52 | 52 | ['<fg=green>'.$username.' is unlocked',]]); |
53 | - $table->render(); |
|
54 | - $this->line('<fg=default>Run <fg=cyan>php artisan lockout:lock '.$username.'<fg=default> to lock account.'); |
|
53 | + $table->render(); |
|
54 | + $this->line('<fg=default>Run <fg=cyan>php artisan lockout:lock '.$username.'<fg=default> to lock account.'); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | // $this->line('<fg=yellow>Valid input is lock, unlock, and attemps.'); |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | namespace Irfa\Lockout\Console\Commands; |
4 | 4 | |
5 | 5 | use Illuminate\Console\Command; |
6 | -use Irfa\Lockout\Func\Core,Lockout; |
|
6 | +use Irfa\Lockout\Func\Core, Lockout; |
|
7 | 7 | use Symfony\Component\Console\Helper\Table; |
8 | 8 | |
9 | 9 | class CheckLockedCommands extends Command |
@@ -42,14 +42,14 @@ discard block |
||
42 | 42 | $username = $this->argument('username'); |
43 | 43 | $lock = Lockout::isLocked($username); |
44 | 44 | $table = new Table($this->output); |
45 | - if($lock){ |
|
45 | + if ($lock) { |
|
46 | 46 | $table->setRows([ |
47 | - ['<fg=yellow>'.$username.' is locked',]]); |
|
47 | + ['<fg=yellow>'.$username.' is locked', ]]); |
|
48 | 48 | $table->render(); |
49 | 49 | $this->line('<fg=default>Run <fg=cyan>php artisan lockout:unlock '.$username.'<fg=default> to unlock account.'); |
50 | - } else{ |
|
50 | + } else { |
|
51 | 51 | $table->setRows([ |
52 | - ['<fg=green>'.$username.' is unlocked',]]); |
|
52 | + ['<fg=green>'.$username.' is unlocked', ]]); |
|
53 | 53 | $table->render(); |
54 | 54 | $this->line('<fg=default>Run <fg=cyan>php artisan lockout:lock '.$username.'<fg=default> to lock account.'); |
55 | 55 | } |
@@ -16,9 +16,9 @@ |
||
16 | 16 | } |
17 | 17 | return true; |
18 | 18 | } |
19 | - public function isLocked($username){ |
|
20 | - return $this->is_locked($username); |
|
21 | - } |
|
19 | + public function isLocked($username){ |
|
20 | + return $this->is_locked($username); |
|
21 | + } |
|
22 | 22 | public function message(){ |
23 | 23 | return $this->showMessage(); |
24 | 24 | } |
@@ -6,58 +6,58 @@ |
||
6 | 6 | |
7 | 7 | class Lockout extends Core { |
8 | 8 | |
9 | - public function unlock($username){ |
|
10 | - if(is_array($username)){ |
|
11 | - foreach($username as $key){ |
|
9 | + public function unlock($username) { |
|
10 | + if (is_array($username)) { |
|
11 | + foreach ($username as $key) { |
|
12 | 12 | $this->_unlock($key); |
13 | 13 | } |
14 | - } else{ |
|
14 | + } else { |
|
15 | 15 | $this->_unlock($username); |
16 | 16 | } |
17 | 17 | return true; |
18 | 18 | } |
19 | - public function isLocked($username){ |
|
19 | + public function isLocked($username) { |
|
20 | 20 | return $this->is_locked($username); |
21 | 21 | } |
22 | - public function message(){ |
|
22 | + public function message() { |
|
23 | 23 | return $this->showMessage(); |
24 | 24 | } |
25 | - public function lock($username){ |
|
26 | - if(is_array($username)){ |
|
27 | - foreach($username as $key){ |
|
25 | + public function lock($username) { |
|
26 | + if (is_array($username)) { |
|
27 | + foreach ($username as $key) { |
|
28 | 28 | $this->_lock($key); |
29 | 29 | } |
30 | - } else{ |
|
30 | + } else { |
|
31 | 31 | $this->_lock($username); |
32 | 32 | } |
33 | 33 | return true; |
34 | 34 | } |
35 | 35 | public function check($username) { |
36 | 36 | $ret = null; |
37 | - if(is_array($username)){ |
|
38 | - foreach($username as $key){ |
|
37 | + if (is_array($username)) { |
|
38 | + foreach ($username as $key) { |
|
39 | 39 | $get = $this->_check($key); |
40 | - if(!empty($get)){ |
|
40 | + if (!empty($get)) { |
|
41 | 41 | $ret[] = $get; |
42 | 42 | } |
43 | 43 | } |
44 | - } else{ |
|
44 | + } else { |
|
45 | 45 | $ret = $this->_check($username); |
46 | 46 | } |
47 | 47 | $ret = json_encode($ret); |
48 | 48 | return json_decode($ret); |
49 | 49 | } |
50 | - public function clearLocked(){ |
|
50 | + public function clearLocked() { |
|
51 | 51 | return $this->clear_all(); |
52 | 52 | } |
53 | 53 | |
54 | - private function _unlock($username){ |
|
54 | + private function _unlock($username) { |
|
55 | 55 | $this->unlock_account($username); |
56 | 56 | } |
57 | - private function _lock($username){ |
|
57 | + private function _lock($username) { |
|
58 | 58 | $this->lock_account($username); |
59 | 59 | } |
60 | - private function _check($username){ |
|
61 | - return json_decode($this->check_account($username),true); |
|
60 | + private function _check($username) { |
|
61 | + return json_decode($this->check_account($username), true); |
|
62 | 62 | } |
63 | 63 | } |
@@ -5,29 +5,29 @@ |
||
5 | 5 | |
6 | 6 | class Variable { |
7 | 7 | |
8 | - protected $ip; |
|
9 | - protected $input; |
|
10 | - protected $dir; |
|
11 | - protected $path; |
|
12 | - protected $attemps; |
|
13 | - protected $permission_code; |
|
8 | + protected $ip; |
|
9 | + protected $input; |
|
10 | + protected $dir; |
|
11 | + protected $path; |
|
12 | + protected $attemps; |
|
13 | + protected $permission_code; |
|
14 | 14 | |
15 | - /** |
|
16 | - * Initializing variable. |
|
17 | - * |
|
18 | - * @return void |
|
19 | - */ |
|
20 | - protected function initVar(){ |
|
21 | - $this->ip = Request::ip(); |
|
22 | - $this->input = Request::input(config('irfa.lockout.input_name')); |
|
23 | - $this->dir = config('irfa.lockout.lockout_file_path'); |
|
24 | - $this->attemps = config('irfa.lockout.login_attemps'); |
|
25 | - $this->path = $this->dir.md5($this->input); |
|
26 | - } |
|
15 | + /** |
|
16 | + * Initializing variable. |
|
17 | + * |
|
18 | + * @return void |
|
19 | + */ |
|
20 | + protected function initVar(){ |
|
21 | + $this->ip = Request::ip(); |
|
22 | + $this->input = Request::input(config('irfa.lockout.input_name')); |
|
23 | + $this->dir = config('irfa.lockout.lockout_file_path'); |
|
24 | + $this->attemps = config('irfa.lockout.login_attemps'); |
|
25 | + $this->path = $this->dir.md5($this->input); |
|
26 | + } |
|
27 | 27 | |
28 | - protected function setPath($username){ |
|
29 | - $this->path = $this->dir.md5($username); |
|
30 | - $this->input = $username; |
|
31 | - } |
|
28 | + protected function setPath($username){ |
|
29 | + $this->path = $this->dir.md5($username); |
|
30 | + $this->input = $username; |
|
31 | + } |
|
32 | 32 | |
33 | - } |
|
34 | 33 | \ No newline at end of file |
34 | + } |
|
35 | 35 | \ No newline at end of file |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | * |
18 | 18 | * @return void |
19 | 19 | */ |
20 | - protected function initVar(){ |
|
20 | + protected function initVar() { |
|
21 | 21 | $this->ip = Request::ip(); |
22 | 22 | $this->input = Request::input(config('irfa.lockout.input_name')); |
23 | 23 | $this->dir = config('irfa.lockout.lockout_file_path'); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | $this->path = $this->dir.md5($this->input); |
26 | 26 | } |
27 | 27 | |
28 | - protected function setPath($username){ |
|
28 | + protected function setPath($username) { |
|
29 | 29 | $this->path = $this->dir.md5($username); |
30 | 30 | $this->input = $username; |
31 | 31 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | public function handle() |
45 | 45 | { |
46 | 46 | $domain = strtolower(config("app.name")).".com"; |
47 | - $this->line('<fg=default>--------------------------------------------'); |
|
47 | + $this->line('<fg=default>--------------------------------------------'); |
|
48 | 48 | $this->testWrite($domain); |
49 | 49 | sleep(1); |
50 | 50 | $this->testManualLock($domain); |
@@ -56,45 +56,45 @@ discard block |
||
56 | 56 | } |
57 | 57 | private function testWrite($domain){ |
58 | 58 | $test = new Testing(); |
59 | - if( $test->testWriteEventFailedLogin('lock-test@'.$domain) AND $test->testWritable('lock-test@'.$domain)){ |
|
60 | - $this->line('<fg=default>Auto Lock : <fg=green>OK'); |
|
59 | + if( $test->testWriteEventFailedLogin('lock-test@'.$domain) AND $test->testWritable('lock-test@'.$domain)){ |
|
60 | + $this->line('<fg=default>Auto Lock : <fg=green>OK'); |
|
61 | 61 | } elseif(!$test->testWritable('lock-test@'.$domain)){ |
62 | 62 | $this->success += 1; |
63 | 63 | $this->line('<fg=default>Auto Lock : <fg=yellow>Warning (Permission denied)'); |
64 | 64 | } else{ |
65 | 65 | $this->error += 1; |
66 | - $this->line('<fg=default>Auto Lock : <fg=red>Failed'); |
|
66 | + $this->line('<fg=default>Auto Lock : <fg=red>Failed'); |
|
67 | 67 | } |
68 | 68 | } |
69 | 69 | private function testManualLock($domain){ |
70 | 70 | $test = new Testing(); |
71 | - if( $test->testManualLocking('lock-test@'.$domain)){ |
|
71 | + if( $test->testManualLocking('lock-test@'.$domain)){ |
|
72 | 72 | $this->success += 1; |
73 | - $this->line('<fg=default>Manual Lock : <fg=green>OK'); |
|
73 | + $this->line('<fg=default>Manual Lock : <fg=green>OK'); |
|
74 | 74 | } else{ |
75 | 75 | $this->error += 1; |
76 | - $this->line('<fg=default>Manual Lock : <fg=red>Failed'); |
|
76 | + $this->line('<fg=default>Manual Lock : <fg=red>Failed'); |
|
77 | 77 | } |
78 | 78 | } |
79 | 79 | private function testUnlock($domain){ |
80 | 80 | $test = new Testing(); |
81 | - if( $test->testUnlocking('lock-test@'.$domain)){ |
|
82 | - $this->success += 1; |
|
83 | - $this->line('<fg=default>Unlock Account : <fg=green>OK'); |
|
81 | + if( $test->testUnlocking('lock-test@'.$domain)){ |
|
82 | + $this->success += 1; |
|
83 | + $this->line('<fg=default>Unlock Account : <fg=green>OK'); |
|
84 | 84 | } else{ |
85 | - $this->error += 1; |
|
86 | - $this->line('<fg=default>Unlock Account : <fg=red>Failed'); |
|
85 | + $this->error += 1; |
|
86 | + $this->line('<fg=default>Unlock Account : <fg=red>Failed'); |
|
87 | 87 | } |
88 | 88 | } |
89 | 89 | |
90 | 90 | private function testLocked($domain){ |
91 | 91 | $test = new Testing(); |
92 | - if( $test->testLockLogin('lock-test@'.$domain)){ |
|
93 | - $this->success += 1; |
|
94 | - $this->line('<fg=default>Try Login with locked account : <fg=green>Account is Locked'); |
|
92 | + if( $test->testLockLogin('lock-test@'.$domain)){ |
|
93 | + $this->success += 1; |
|
94 | + $this->line('<fg=default>Try Login with locked account : <fg=green>Account is Locked'); |
|
95 | 95 | } else{ |
96 | - $this->error += 1; |
|
97 | - $this->line('<fg=default>Try Login with locked account : <fg=red>Account logged in'); |
|
96 | + $this->error += 1; |
|
97 | + $this->line('<fg=default>Try Login with locked account : <fg=red>Account logged in'); |
|
98 | 98 | } |
99 | 99 | } |
100 | 100 |
@@ -10,8 +10,8 @@ discard block |
||
10 | 10 | |
11 | 11 | class TestingCommands extends Command |
12 | 12 | { |
13 | - private $error=0; |
|
14 | - private $success=0; |
|
13 | + private $error = 0; |
|
14 | + private $success = 0; |
|
15 | 15 | /** |
16 | 16 | * The name and signature of the console command. |
17 | 17 | * |
@@ -54,45 +54,45 @@ discard block |
||
54 | 54 | $this->testUnlock($domain); |
55 | 55 | |
56 | 56 | } |
57 | - private function testWrite($domain){ |
|
57 | + private function testWrite($domain) { |
|
58 | 58 | $test = new Testing(); |
59 | - if( $test->testWriteEventFailedLogin('lock-test@'.$domain) AND $test->testWritable('lock-test@'.$domain)){ |
|
59 | + if ($test->testWriteEventFailedLogin('lock-test@'.$domain) AND $test->testWritable('lock-test@'.$domain)) { |
|
60 | 60 | $this->line('<fg=default>Auto Lock : <fg=green>OK'); |
61 | - } elseif(!$test->testWritable('lock-test@'.$domain)){ |
|
61 | + } elseif (!$test->testWritable('lock-test@'.$domain)) { |
|
62 | 62 | $this->success += 1; |
63 | 63 | $this->line('<fg=default>Auto Lock : <fg=yellow>Warning (Permission denied)'); |
64 | - } else{ |
|
64 | + } else { |
|
65 | 65 | $this->error += 1; |
66 | 66 | $this->line('<fg=default>Auto Lock : <fg=red>Failed'); |
67 | 67 | } |
68 | 68 | } |
69 | - private function testManualLock($domain){ |
|
69 | + private function testManualLock($domain) { |
|
70 | 70 | $test = new Testing(); |
71 | - if( $test->testManualLocking('lock-test@'.$domain)){ |
|
71 | + if ($test->testManualLocking('lock-test@'.$domain)) { |
|
72 | 72 | $this->success += 1; |
73 | 73 | $this->line('<fg=default>Manual Lock : <fg=green>OK'); |
74 | - } else{ |
|
74 | + } else { |
|
75 | 75 | $this->error += 1; |
76 | 76 | $this->line('<fg=default>Manual Lock : <fg=red>Failed'); |
77 | 77 | } |
78 | 78 | } |
79 | - private function testUnlock($domain){ |
|
79 | + private function testUnlock($domain) { |
|
80 | 80 | $test = new Testing(); |
81 | - if( $test->testUnlocking('lock-test@'.$domain)){ |
|
81 | + if ($test->testUnlocking('lock-test@'.$domain)) { |
|
82 | 82 | $this->success += 1; |
83 | 83 | $this->line('<fg=default>Unlock Account : <fg=green>OK'); |
84 | - } else{ |
|
84 | + } else { |
|
85 | 85 | $this->error += 1; |
86 | 86 | $this->line('<fg=default>Unlock Account : <fg=red>Failed'); |
87 | 87 | } |
88 | 88 | } |
89 | 89 | |
90 | - private function testLocked($domain){ |
|
90 | + private function testLocked($domain) { |
|
91 | 91 | $test = new Testing(); |
92 | - if( $test->testLockLogin('lock-test@'.$domain)){ |
|
92 | + if ($test->testLockLogin('lock-test@'.$domain)) { |
|
93 | 93 | $this->success += 1; |
94 | 94 | $this->line('<fg=default>Try Login with locked account : <fg=green>Account is Locked'); |
95 | - } else{ |
|
95 | + } else { |
|
96 | 96 | $this->error += 1; |
97 | 97 | $this->line('<fg=default>Try Login with locked account : <fg=red>Account logged in'); |
98 | 98 | } |