12 lines
178 B
PHP
12 lines
178 B
PHP
<?php
|
|
|
|
namespace App\Base\Util;
|
|
|
|
class ImdbMatcher
|
|
{
|
|
public static function isMatch(string $imdbId): bool
|
|
{
|
|
return preg_match('/^tt\d{7,20}$/', $imdbId);
|
|
}
|
|
}
|