15 lines
204 B
PHP
15 lines
204 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Types;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @phpstan-type HashObject array{
|
||
|
|
* filename:string,
|
||
|
|
* hash_crc32:string,
|
||
|
|
* hash_sha1:string,
|
||
|
|
* verified:string
|
||
|
|
* }
|
||
|
|
*/
|
||
|
|
interface SubmissionTypes
|
||
|
|
{}
|