mirror of
https://github.com/pestphp/pest.git
synced 2026-09-05 14:23:34 +02:00
16 lines
230 B
PHP
16 lines
230 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Plugins\Tia\Contracts;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
interface Lockfile
|
|
{
|
|
public function applies(string $filename): bool;
|
|
|
|
public function fingerprint(string $contents): ?string;
|
|
}
|