mirror of
https://github.com/pierre42100/comunic
synced 2025-02-22 01:13:47 +00:00
10 lines
217 B
PHP
10 lines
217 B
PHP
![]() |
<?php
|
||
|
|
||
|
// the identity scanner. Does what you expect.
|
||
|
// Implemented for consistency.
|
||
|
|
||
|
class LuminousIdentityScanner extends LuminousScanner {
|
||
|
public function main() {
|
||
|
$this->record($this->string(), null);
|
||
|
}
|
||
|
}
|