1 | <?php |
||
11 | class SyncLdap extends Command |
||
12 | { |
||
13 | /** |
||
14 | * The name and signature of the console command. |
||
15 | * |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $signature = 'users:sync'; |
||
19 | |||
20 | /** |
||
21 | * The console command description. |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $description = 'Sync users table with LDAP'; |
||
26 | |||
27 | /** |
||
28 | * Execute the console command. |
||
29 | * |
||
30 | * @return Exception|null |
||
31 | */ |
||
32 | public function handle() |
||
41 | |||
42 | private function activateUsers() |
||
47 | } |
||
48 |