Enable Discovery debug logging for production troubleshooting

- Add DISCOVERY_LOG_LEVEL=debug
- Add DISCOVERY_SHOW_PROGRESS=true
- Temporary changes for debugging InitializerProcessor fixes on production
This commit is contained in:
2025-08-11 20:13:26 +02:00
parent 59fd3dd3b1
commit 55a330b223
3683 changed files with 2956207 additions and 16948 deletions

View File

@@ -0,0 +1,32 @@
<?php
declare(strict_types=1);
namespace App\Framework\Random;
interface RandomGenerator
{
/**
* Generate cryptographically secure random bytes.
*
* @param int $length Number of bytes to generate
* @return string Random bytes
*/
public function bytes(int $length): string;
/**
* Generate a random integer between min and max (inclusive).
*
* @param int $min Minimum value (inclusive)
* @param int $max Maximum value (inclusive)
* @return int Random integer
*/
public function int(int $min, int $max): int;
/**
* Generate a random float between 0.0 and 1.0 (0.0 inclusive, 1.0 exclusive).
*
* @return float Random float between 0.0 and 1.0
*/
public function float(): float;
}