10 lines
217 B
PHP
Raw Normal View History

2016-11-19 12:08:12 +01:00
<?php
// the identity scanner. Does what you expect.
// Implemented for consistency.
class LuminousIdentityScanner extends LuminousScanner {
public function main() {
$this->record($this->string(), null);
}
}