Fancybox is deprecated

This commit is contained in:
Michael 2024-11-09 18:24:19 +00:00 committed by Tobias Diekershoff
commit 5f781acfdf
234 changed files with 29623 additions and 0 deletions

View file

@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
namespace Abraham\TwitterOAuth;
// Mock time and random values for consistent tests with VCR
function time()
{
return MOCK_TIME;
}
function microtime()
{
return 'FAKE_MICROTIME';
}
function mt_rand()
{
return 123456789;
}