identity.php 217 B

12345678910
  1. <?php
  2. // the identity scanner. Does what you expect.
  3. // Implemented for consistency.
  4. class LuminousIdentityScanner extends LuminousScanner {
  5. public function main() {
  6. $this->record($this->string(), null);
  7. }
  8. }