utilikit-1.0.0/tests/src/Unit/UtilikitCacheManagerMocks.php
tests/src/Unit/UtilikitCacheManagerMocks.php
<?php
/**
* @file
* Mock implementations for Drupal functions used in UtilikitCacheManager tests.
*/
declare(strict_types=1);
namespace Drupal\Tests\utilikit\Unit;
/**
* Mock implementation of drupal_flush_all_caches for testing.
*/
function drupal_flush_all_caches(): void {
$GLOBALS['_utilikit_test_drupal_flush_all_caches_called'] = TRUE;
}
