Compare commits

..

1 Commits

Author SHA1 Message Date
87e72ec55e fix: adds ImdbMatcher 2025-07-25 21:35:29 -05:00

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Base\Util;
class ImdbMatcher
{
public static function isMatch(string $imdbId): bool
{
return preg_match('/^tt\d{7}$/', $imdbId);
}
}