Skip to content

Instantly share code, notes, and snippets.

@ismail1432
Last active August 18, 2022 16:56
Show Gist options
  • Save ismail1432/0913f5adffbe837ab33ea9e647f0977b to your computer and use it in GitHub Desktop.
Save ismail1432/0913f5adffbe837ab33ea9e647f0977b to your computer and use it in GitHub Desktop.
<?php
final class TimeoutMaxDuration
{
private const DEFAULT = 10;
// let's set 10 seconds by default;
public static int $timeout = self::DEFAULT;
public static function resetTimeout(): void
{
self::$timeout = self::DEFAULT;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment