repo stringlengths 7 63 | file_url stringlengths 81 284 | file_path stringlengths 5 200 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:02:33 2026-01-05 05:24:06 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/bootstrap.php | src/bootstrap.php | <?php
declare(strict_types=1);
const RELEASE_ROOT = __DIR__."/..";
const PROJECT_ROOT = RELEASE_ROOT."/../..";
const TEMP_DIR = RELEASE_ROOT."/temp";
const LOGS_DIR = RELEASE_ROOT."/logs";
const BIN_DIR = RELEASE_ROOT."/bin";
require_once RELEASE_ROOT."/vendor/autoload.php";
use AugmentedSteam\Server\Config\BrightDa... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Routing/Router.php | src/Routing/Router.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Routing;
use AugmentedSteam\Server\Config\CoreConfig;
use AugmentedSteam\Server\Controllers\AppController;
use AugmentedSteam\Server\Controllers\DLCController;
use AugmentedSteam\Server\Controllers\EarlyAccessController;
use AugmentedSteam\Server\Controll... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Routing/Strategy/ApiStrategy.php | src/Routing/Strategy/ApiStrategy.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Routing\Strategy;
use AugmentedSteam\Server\Config\CoreConfig;
use GuzzleHttp\Exception\ClientException;
use League\Route\ContainerAwareInterface;
use League\Route\Http;
use League\Route\Route;
use League\Route\Strategy\JsonStrategy;
use Psr\Http\Message\... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Routing/Middleware/IpThrottleMiddleware.php | src/Routing/Middleware/IpThrottleMiddleware.php | <?php
namespace AugmentedSteam\Server\Routing\Middleware;
use AugmentedSteam\Server\Lib\Redis\ERedisKey;
use AugmentedSteam\Server\Lib\Redis\RedisClient;
use Laminas\Diactoros\Response\EmptyResponse;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\MiddlewareInte... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Routing/Middleware/AccessLogMiddleware.php | src/Routing/Middleware/AccessLogMiddleware.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Routing\Middleware;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\MiddlewareInterface;
use Psr\Http\Server\RequestHandlerInterface;
use Psr\Log\LoggerInterface;
class AccessLogMiddleware implemen... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Controllers/ProfileController.php | src/Controllers/ProfileController.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Controllers;
use AugmentedSteam\Server\Data\Managers\SteamRepManager;
use AugmentedSteam\Server\Data\Managers\UserManager;
use AugmentedSteam\Server\Database\DBadges;
use Psr\Http\Message\ServerRequestInterface;
class ProfileController extends Controller... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Controllers/RatesController.php | src/Controllers/RatesController.php | <?php
namespace AugmentedSteam\Server\Controllers;
use AugmentedSteam\Server\Exceptions\InvalidValueException;
use AugmentedSteam\Server\Lib\Http\ListParam;
use AugmentedSteam\Server\Lib\Money\CurrencyConverter;
use Laminas\Diactoros\Response\JsonResponse;
use Psr\Http\Message\ServerRequestInterface;
class RatesContr... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Controllers/Controller.php | src/Controllers/Controller.php | <?php
namespace AugmentedSteam\Server\Controllers;
use League\Route\Http\Exception\BadRequestException;
abstract class Controller
{
/**
* @param array<mixed> $data
* @return list<int>
*/
protected function validateIntList(array $data, string $key): array {
if (isset($data[$key])) {
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Controllers/DLCController.php | src/Controllers/DLCController.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Controllers;
use AugmentedSteam\Server\Database\DDlcCategories;
use AugmentedSteam\Server\Database\TDlcCategories;
use AugmentedSteam\Server\Database\TGameDlc;
use IsThereAnyDeal\Database\DbDriver;
use Psr\Http\Message\ServerRequestInterface;
class DLCCo... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Controllers/ProfileManagementController.php | src/Controllers/ProfileManagementController.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Controllers;
use AugmentedSteam\Server\Data\Managers\Market\MarketManager;
use AugmentedSteam\Server\Data\Managers\UserManager;
use AugmentedSteam\Server\Lib\Http\IntParam;
use AugmentedSteam\Server\Lib\Http\StringParam;
use AugmentedSteam\Server\Lib\Open... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Controllers/MarketController.php | src/Controllers/MarketController.php | <?php
namespace AugmentedSteam\Server\Controllers;
use AugmentedSteam\Server\Data\Managers\Market\MarketIndex;
use AugmentedSteam\Server\Data\Managers\Market\MarketManager;
use AugmentedSteam\Server\Exceptions\InvalidValueException;
use AugmentedSteam\Server\Lib\Http\IntParam;
use AugmentedSteam\Server\Lib\Http\ListPa... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Controllers/AppController.php | src/Controllers/AppController.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Controllers;
use AugmentedSteam\Server\Data\Interfaces\AppData\AppDataProviderInterface;
use AugmentedSteam\Server\Data\Interfaces\AppData\HLTBProviderInterface;
use AugmentedSteam\Server\Data\Interfaces\AppData\PlayersProviderInterface;
use AugmentedStea... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Controllers/EarlyAccessController.php | src/Controllers/EarlyAccessController.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Controllers;
use AugmentedSteam\Server\Data\Interfaces\EarlyAccessProviderInterface;
use AugmentedSteam\Server\Lib\Cache\CacheInterface;
use AugmentedSteam\Server\Lib\Cache\ECacheKey;
use Laminas\Diactoros\Response\JsonResponse;
use Psr\Http\Message\Serve... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Controllers/TwitchController.php | src/Controllers/TwitchController.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Controllers;
use AugmentedSteam\Server\Data\Interfaces\TwitchProviderInterface;
use AugmentedSteam\Server\Data\Objects\TwitchStream;
use AugmentedSteam\Server\Lib\Cache\CacheInterface;
use AugmentedSteam\Server\Lib\Cache\ECacheKey;
use JsonSerializable;
u... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Controllers/SimilarController.php | src/Controllers/SimilarController.php | <?php
namespace AugmentedSteam\Server\Controllers;
use AugmentedSteam\Server\Data\Interfaces\AppData\SteamPeekProviderInterface;
use AugmentedSteam\Server\Data\Objects\SteamPeak\SteamPeekResults;
use AugmentedSteam\Server\Lib\Cache\CacheInterface;
use AugmentedSteam\Server\Lib\Cache\ECacheKey;
use AugmentedSteam\Serve... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Controllers/PricesController.php | src/Controllers/PricesController.php | <?php
namespace AugmentedSteam\Server\Controllers;
use AugmentedSteam\Server\Data\Interfaces\PricesProviderInterface;
use JsonSerializable;
use League\Route\Http\Exception\BadRequestException;
use Psr\Http\Message\ServerRequestInterface;
class PricesController extends Controller {
public function __construct(
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Exceptions/InvalidValueException.php | src/Exceptions/InvalidValueException.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Exceptions;
class InvalidValueException extends ApiException {
public function __construct(string $paramName) {
parent::__construct("invalid_value", "Parameter '{$paramName}' has invalid value");
}
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Exceptions/MissingParameterException.php | src/Exceptions/MissingParameterException.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Exceptions;
class MissingParameterException extends ApiException {
public function __construct(string $missingParamName) {
parent::__construct("missing_param", "Required parameter '{$missingParamName}' is missing");
}
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Exceptions/ApiException.php | src/Exceptions/ApiException.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Exceptions;
use League\Route\Http\Exception\BadRequestException;
use Psr\Http\Message\ResponseInterface;
abstract class ApiException extends BadRequestException {
public function __construct(
private readonly string $errorCode,
priva... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Endpoints/EndpointBuilder.php | src/Endpoints/EndpointBuilder.php | <?php
namespace AugmentedSteam\Server\Endpoints;
class EndpointBuilder
{
public function __construct(
private readonly EndpointsConfig $endpoints,
private readonly KeysConfig $keys
) {}
public function getSteamRep(int $steamId): string {
return sprintf($this->endpoints->getSteamRep... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Endpoints/EndpointsConfig.php | src/Endpoints/EndpointsConfig.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Endpoints;
use Nette\Schema\Expect;
use Nette\Schema\Processor;
class EndpointsConfig
{
/**
* @var object{
* wsgf: string,
* steamspy: string,
* steamrep: string,
* steampeek: string,
* itad: string
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Endpoints/KeysConfig.php | src/Endpoints/KeysConfig.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Endpoints;
use Nette\Schema\Expect;
use Nette\Schema\Processor;
class KeysConfig
{
/**
* @var object{
* itad: string,
* steampeek: string
* }
*/
private readonly object $config;
public function __construct(mixe... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Redis/ERedisKey.php | src/Lib/Redis/ERedisKey.php | <?php
namespace AugmentedSteam\Server\Lib\Redis;
enum ERedisKey: string {
case ApiThrottleIp = "throttle";
case PriceOverview = "overview";
case Gids = "gids";
public function getKey(string $suffix=""): string {
return empty($suffix)
? $this->value
: "{$this->value}:{$... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Redis/RedisConfig.php | src/Lib/Redis/RedisConfig.php | <?php
namespace AugmentedSteam\Server\Lib\Redis;
use Nette\Schema\Expect;
use Nette\Schema\Processor;
class RedisConfig
{
/**
* @var object{
* scheme: string,
* host: string,
* port: int,
* prefix: string,
* database: int
* }
*/
private object $data;... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Redis/RedisClient.php | src/Lib/Redis/RedisClient.php | <?php
namespace AugmentedSteam\Server\Lib\Redis;
class RedisClient extends \Predis\Client{
public function __construct(RedisConfig $config) {
parent::__construct([
"scheme" => $config->getScheme(),
"host" => $config->getHost(),
"port" => $config->getPort(),
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Money/CurrencyConverter.php | src/Lib/Money/CurrencyConverter.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Lib\Money;
use AugmentedSteam\Server\Database\DCurrency;
use AugmentedSteam\Server\Database\TCurrency;
use IsThereAnyDeal\Database\DbDriver;
readonly class CurrencyConverter
{
public function __construct(
private DbDriver $db
) {}
pu... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Http/IntParam.php | src/Lib/Http/IntParam.php | <?php
namespace AugmentedSteam\Server\Lib\Http;
use AugmentedSteam\Server\Exceptions\InvalidValueException;
use AugmentedSteam\Server\Exceptions\MissingParameterException;
use Psr\Http\Message\ServerRequestInterface;
class IntParam
{
private ?int $value;
public function __construct(
ServerRequestInte... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Http/StringParam.php | src/Lib/Http/StringParam.php | <?php
namespace AugmentedSteam\Server\Lib\Http;
use AugmentedSteam\Server\Exceptions\InvalidValueException;
use AugmentedSteam\Server\Exceptions\MissingParameterException;
use Psr\Http\Message\ServerRequestInterface;
class StringParam
{
private ?string $value;
public function __construct(
ServerReque... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Http/ListParam.php | src/Lib/Http/ListParam.php | <?php
namespace AugmentedSteam\Server\Lib\Http;
use AugmentedSteam\Server\Exceptions\MissingParameterException;
use Psr\Http\Message\ServerRequestInterface;
class ListParam
{
/** @var list<string>|null */
private ?array $value;
/**
* @param list<string>|null $default
* @param non-empty-string $... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Http/BoolParam.php | src/Lib/Http/BoolParam.php | <?php
namespace AugmentedSteam\Server\Lib\Http;
use AugmentedSteam\Server\Exceptions\InvalidValueException;
use AugmentedSteam\Server\Exceptions\MissingParameterException;
use Psr\Http\Message\ServerRequestInterface;
class BoolParam
{
private ?bool $value;
public function __construct(
ServerRequestIn... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Logging/LoggerFactory.php | src/Lib/Logging/LoggerFactory.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Lib\Logging;
use Monolog\Formatter\LineFormatter;
use Monolog\Handler\NullHandler;
use Monolog\Handler\StreamHandler;
use Monolog\Level;
use Monolog\Logger;
use Monolog\Processor\UidProcessor;
use Monolog\Processor\WebProcessor;
use Psr\Log\LoggerInterfac... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Logging/LoggerFactoryInterface.php | src/Lib/Logging/LoggerFactoryInterface.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Lib\Logging;
use Psr\Log\LoggerInterface;
interface LoggerFactoryInterface
{
public function logger(string $channel): LoggerInterface;
public function access(): LoggerInterface;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Logging/LoggingConfig.php | src/Lib/Logging/LoggingConfig.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Lib\Logging;
use Nette\Schema\Expect;
use Nette\Schema\Processor;
class LoggingConfig
{
/**
* @var object{enabled: boolean}
*/
private readonly object $config;
/**
* @param array<string, mixed> $config
*/
public funct... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Cache/CacheInterface.php | src/Lib/Cache/CacheInterface.php | <?php
namespace AugmentedSteam\Server\Lib\Cache;
interface CacheInterface
{
public function has(ECacheKey $key, string $field): bool;
public function get(ECacheKey $key, string $field): mixed;
/**
* @template T
* @param T $data
*/
public function set(ECacheKey $key, string $field, mixe... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Cache/DCache.php | src/Lib/Cache/DCache.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Lib\Cache;
class DCache
{
private ECacheKey $key;
private string $field;
private ?string $data;
private int $expiry;
public function getKey(): ECacheKey {
return $this->key;
}
public function setKey(ECacheKey $key): s... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Cache/Cache.php | src/Lib/Cache/Cache.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Lib\Cache;
use AugmentedSteam\Server\Database\TCache;
use IsThereAnyDeal\Database\DbDriver;
class Cache implements CacheInterface
{
private readonly DbDriver $db;
private readonly TCache $c;
public function __construct(DbDriver $db) {
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Cache/ECacheKey.php | src/Lib/Cache/ECacheKey.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Lib\Cache;
enum ECacheKey: int
{
case WSGF = 1;
case Reviews = 2;
case SteamPeek = 3;
case Players = 4;
case Twitch = 5;
case EarlyAccess = 6;
case HLTB = 7;
case Exfgls = 8;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Loader/Loader.php | src/Lib/Loader/Loader.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Lib\Loader;
use AugmentedSteam\Server\Lib\Loader\Proxy\ProxyInterface;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
use GuzzleHttp\Pool;
use Iterator;
use Psr\Http\Message\ResponseInterface;
use Psr\Log\LoggerInterface;
use Throwable;
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Loader/SimpleLoader.php | src/Lib/Loader/SimpleLoader.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Lib\Loader;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
use Psr\Http\Message\ResponseInterface;
readonly class SimpleLoader
{
public function __construct(
private Client $guzzle
) {}
/**
* @param array<strin... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Loader/Crawler.php | src/Lib/Loader/Crawler.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Lib\Loader;
use Psr\Http\Message\ResponseInterface;
use Psr\Log\LoggerInterface;
use SplQueue;
use Throwable;
abstract class Crawler
{
private SplQueue $requestQueue;
public function __construct(
private readonly Loader $loader,
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Loader/Item.php | src/Lib/Loader/Item.php | <?php
namespace AugmentedSteam\Server\Lib\Loader;
final class Item
{
private string $id;
private string $method = "GET";
private string $url;
/** @var array<int, mixed> */
private array $curlOptions = [];
private bool $allowRedirect = true;
private ?string $body = null;
/** @var array<s... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Loader/Proxy/ProxyFactoryInterface.php | src/Lib/Loader/Proxy/ProxyFactoryInterface.php | <?php
namespace AugmentedSteam\Server\Lib\Loader\Proxy;
interface ProxyFactoryInterface {
public function createProxy(): ProxyInterface;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Loader/Proxy/ProxyFactory.php | src/Lib/Loader/Proxy/ProxyFactory.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Lib\Loader\Proxy;
use AugmentedSteam\Server\Config\BrightDataConfig;
class ProxyFactory implements ProxyFactoryInterface
{
private BrightDataConfig $config;
public function __construct(BrightDataConfig $config) {
$this->config = $config;... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Loader/Proxy/BrightDataProxy.php | src/Lib/Loader/Proxy/BrightDataProxy.php | <?php
namespace AugmentedSteam\Server\Lib\Loader\Proxy;
use AugmentedSteam\Server\Config\BrightDataConfig;
class BrightDataProxy implements ProxyInterface {
private BrightDataConfig $config;
public function __construct(BrightDataConfig $config) {
$this->config = $config;
}
/**
* @retur... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/Loader/Proxy/ProxyInterface.php | src/Lib/Loader/Proxy/ProxyInterface.php | <?php
namespace AugmentedSteam\Server\Lib\Loader\Proxy;
interface ProxyInterface {
/**
* @return array<int, mixed>
*/
public function getCurlOptions(): array;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/OpenId/OpenIdProvider.php | src/Lib/OpenId/OpenIdProvider.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Lib\OpenId;
/**
* An implementation of OpenID authentication for Steam, adapted from xPaw's version:
* {@link https://github.com/xPaw/SteamOpenID.php}
*/
class OpenIdProvider
{
private const string ProviderLoginUrl = "https://steamcommunity.com/ope... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/OpenId/Session.php | src/Lib/OpenId/Session.php | <?php
namespace AugmentedSteam\Server\Lib\OpenId;
use AugmentedSteam\Server\Database\DSession;
use AugmentedSteam\Server\Database\TSessions;
use IsThereAnyDeal\Database\DbDriver;
use Laminas\Diactoros\Response\RedirectResponse;
use Psr\Http\Message\ServerRequestInterface;
class Session {
private const string Cook... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Lib/OpenId/OpenId.php | src/Lib/OpenId/OpenId.php | <?php
namespace AugmentedSteam\Server\Lib\OpenId;
use League\Uri\Uri;
class OpenId
{
private readonly OpenIdProvider $provider;
private string $steamId;
public function __construct(string $host, string $returnPath) {
$this->provider = new OpenIdProvider("https://".$host, $returnPath);
}
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Cron/CronJob.php | src/Cron/CronJob.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Cron;
use AugmentedSteam\Server\Environment\Lock;
class CronJob
{
private ?Lock $lock = null;
/** @var callable */
private $callable;
public function lock(string $name, int $durationMin): self {
$this->lock = new Lock("temp/lock... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Cron/CronJobFactory.php | src/Cron/CronJobFactory.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Cron;
use AugmentedSteam\Server\Data\Interfaces\RatesProviderInterface;
use AugmentedSteam\Server\Data\Updaters\Market\MarketCrawler;
use AugmentedSteam\Server\Data\Updaters\Rates\RatesUpdater;
use AugmentedSteam\Server\Database\TCache;
use AugmentedSteam... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/TMarketIndex.php | src/Database/TMarketIndex.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
use IsThereAnyDeal\Database\Attributes\TableName;
use IsThereAnyDeal\Database\Tables\Column;
use IsThereAnyDeal\Database\Tables\Table;
#[TableName("market_index")]
class TMarketIndex extends Table
{
public Column $appid;
public Column $... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/DMarketData.php | src/Database/DMarketData.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
use AugmentedSteam\Server\Data\Managers\Market\ERarity;
use AugmentedSteam\Server\Data\Managers\Market\EType;
class DMarketData
{
private string $hash_name;
private int $appid;
private string $appname;
private string $name;
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/DBadges.php | src/Database/DBadges.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
class DBadges
{
private int $id;
private string $title;
private string $img;
public function getId(): int {
return $this->id;
}
public function setId(int $id): self {
$this->id = $id;
return $thi... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/TSessions.php | src/Database/TSessions.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
use IsThereAnyDeal\Database\Attributes\TableName;
use IsThereAnyDeal\Database\Tables\Column;
use IsThereAnyDeal\Database\Tables\Table;
#[TableName("sessions")]
class TSessions extends Table
{
public Column $token;
public Column $hash;
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/TDlcCategories.php | src/Database/TDlcCategories.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
use IsThereAnyDeal\Database\Attributes\TableName;
use IsThereAnyDeal\Database\Tables\Column;
use IsThereAnyDeal\Database\Tables\Table;
#[TableName("dlc_categories")]
class TDlcCategories extends Table
{
public Column $id;
public Column ... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/TUsersProfiles.php | src/Database/TUsersProfiles.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
use IsThereAnyDeal\Database\Attributes\TableName;
use IsThereAnyDeal\Database\Tables\Column;
use IsThereAnyDeal\Database\Tables\Table;
#[TableName("users_profiles")]
class TUsersProfiles extends Table
{
public Column $steam64;
public Co... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/DSession.php | src/Database/DSession.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
class DSession
{
private string $token;
private string $hash;
private int $steam_id;
private int $expiry;
public function getToken(): string {
return $this->token;
}
public function setToken(string $token): ... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/TBadges.php | src/Database/TBadges.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
use IsThereAnyDeal\Database\Attributes\TableName;
use IsThereAnyDeal\Database\Tables\Column;
use IsThereAnyDeal\Database\Tables\Table;
#[TableName("badges")]
class TBadges extends Table
{
public Column $id;
public Column $title;
pub... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/TGameDlc.php | src/Database/TGameDlc.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
use IsThereAnyDeal\Database\Attributes\TableName;
use IsThereAnyDeal\Database\Tables\Column;
use IsThereAnyDeal\Database\Tables\Table;
#[TableName("game_dlc")]
class TGameDlc extends Table
{
public Column $appid;
public Column $dlc_cate... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/DUsersProfiles.php | src/Database/DUsersProfiles.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
class DUsersProfiles
{
private int $steam64;
private ?string $bg_img;
private ?int $bg_appid;
private ?string $style;
public function getSteam64(): int {
return $this->steam64;
}
public function setSteam64(i... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/TCache.php | src/Database/TCache.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
use IsThereAnyDeal\Database\Attributes\TableName;
use IsThereAnyDeal\Database\Tables\Column;
use IsThereAnyDeal\Database\Tables\Table;
#[TableName("cache")]
class TCache extends Table
{
public Column $key;
public Column $field;
publ... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/DDlcCategories.php | src/Database/DDlcCategories.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
class DDlcCategories
{
private int $id;
private string $name;
private string $icon;
private string $description;
public function getId(): int {
return $this->id;
}
public function setId(int $id): self {
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/TMarketData.php | src/Database/TMarketData.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
use IsThereAnyDeal\Database\Attributes\TableName;
use IsThereAnyDeal\Database\Tables\Column;
use IsThereAnyDeal\Database\Tables\Table;
#[TableName("market_data")]
class TMarketData extends Table
{
public Column $hash_name;
public Column... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/TUsersBadges.php | src/Database/TUsersBadges.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
use IsThereAnyDeal\Database\Attributes\TableName;
use IsThereAnyDeal\Database\Tables\Column;
use IsThereAnyDeal\Database\Tables\Table;
#[TableName("users_badges")]
class TUsersBadges extends Table
{
public Column $steam64;
public Column... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/TSteamRep.php | src/Database/TSteamRep.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
use IsThereAnyDeal\Database\Attributes\TableName;
use IsThereAnyDeal\Database\Tables\Column;
use IsThereAnyDeal\Database\Tables\Table;
#[TableName("steamrep")]
class TSteamRep extends Table
{
public Column $steam64;
public Column $rep;
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/DCurrency.php | src/Database/DCurrency.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
class DCurrency
{
private string $from;
private string $to;
private float $rate;
private int $timestamp;
public function getFrom(): string {
return $this->from;
}
public function setFrom(string $from): self ... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/TCurrency.php | src/Database/TCurrency.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
use IsThereAnyDeal\Database\Attributes\TableName;
use IsThereAnyDeal\Database\Tables\Column;
use IsThereAnyDeal\Database\Tables\Table;
#[TableName("currency")]
class TCurrency extends Table
{
public Column $from;
public Column $to;
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/DMarketIndex.php | src/Database/DMarketIndex.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
class DMarketIndex
{
private int $appid;
private int $last_update;
private int $last_request;
private int $request_counter;
public function getAppid(): int {
return $this->appid;
}
public function setAppid(i... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Database/THLTB.php | src/Database/THLTB.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Database;
use IsThereAnyDeal\Database\Attributes\TableName;
use IsThereAnyDeal\Database\Tables\Column;
use IsThereAnyDeal\Database\Tables\Table;
#[TableName("hltb")]
class THLTB extends Table
{
public Column $id;
public Column $appid;
public ... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Config/BrightDataConfig.php | src/Config/BrightDataConfig.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Config;
use Nette\Schema\Expect;
use Nette\Schema\Processor;
class BrightDataConfig
{
/**
* @var object{
* url: string,
* port: int,
* user: string,
* password: string,
* zone: string
* }
*/... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Config/CoreConfig.php | src/Config/CoreConfig.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Config;
use Nette\Schema\Expect;
use Nette\Schema\Processor;
class CoreConfig
{
/**
* @var object{
* host: string,
* dev: bool,
* prettyErrors: bool,
* sentry: object{
* enabled: bool,
* ... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Interfaces/SteamRepProviderInterface.php | src/Data/Interfaces/SteamRepProviderInterface.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Interfaces;
interface SteamRepProviderInterface {
/**
* @return ?list<string>
*/
public function getReputation(int $steamId): ?array;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Interfaces/PricesProviderInterface.php | src/Data/Interfaces/PricesProviderInterface.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Interfaces;
use AugmentedSteam\Server\Data\Objects\Prices;
interface PricesProviderInterface {
/**
* @param list<string> $steamIds
* @param list<int> $shops
*/
public function fetch(array $steamIds, array $shops, string $coun... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Interfaces/EarlyAccessProviderInterface.php | src/Data/Interfaces/EarlyAccessProviderInterface.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Interfaces;
interface EarlyAccessProviderInterface {
/** @return list<int> */
public function fetch(): array;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Interfaces/ExfglsProviderInterface.php | src/Data/Interfaces/ExfglsProviderInterface.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Interfaces;
use AugmentedSteam\Server\Data\Interfaces\AppData\AppDataProviderInterface;
interface ExfglsProviderInterface extends AppDataProviderInterface {
public function fetch(int $appid): bool;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Interfaces/TwitchProviderInterface.php | src/Data/Interfaces/TwitchProviderInterface.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Interfaces;
use AugmentedSteam\Server\Data\Objects\TwitchStream;
interface TwitchProviderInterface {
public function fetch(string $channel): ?TwitchStream;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Interfaces/RatesProviderInterface.php | src/Data/Interfaces/RatesProviderInterface.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Interfaces;
interface RatesProviderInterface {
/**
* @return list<array{
* from: string,
* to: string,
* rate: float
* }>
*/
public function fetch(): array;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Interfaces/AppData/SteamPeekProviderInterface.php | src/Data/Interfaces/AppData/SteamPeekProviderInterface.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Interfaces\AppData;
use AugmentedSteam\Server\Data\Objects\SteamPeak\SteamPeekResults;
interface SteamPeekProviderInterface extends AppDataProviderInterface {
public function fetch(int $appid): ?SteamPeekResults;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Interfaces/AppData/ReviewsProviderInterface.php | src/Data/Interfaces/AppData/ReviewsProviderInterface.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Interfaces\AppData;
use AugmentedSteam\Server\Data\Objects\Reviews\Reviews;
interface ReviewsProviderInterface extends AppDataProviderInterface {
public function fetch(int $appid): Reviews;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Interfaces/AppData/WSGFProviderInterface.php | src/Data/Interfaces/AppData/WSGFProviderInterface.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Interfaces\AppData;
use AugmentedSteam\Server\Data\Objects\WSGF;
interface WSGFProviderInterface extends AppDataProviderInterface {
public function fetch(int $appid): ?WSGF;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Interfaces/AppData/HLTBProviderInterface.php | src/Data/Interfaces/AppData/HLTBProviderInterface.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Interfaces\AppData;
use AugmentedSteam\Server\Data\Objects\HLTB;
interface HLTBProviderInterface extends AppDataProviderInterface {
public function fetch(int $appid): ?HLTB;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Interfaces/AppData/PlayersProviderInterface.php | src/Data/Interfaces/AppData/PlayersProviderInterface.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Interfaces\AppData;
use AugmentedSteam\Server\Data\Objects\Players;
interface PlayersProviderInterface extends AppDataProviderInterface {
public function fetch(int $appid): Players;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Interfaces/AppData/AppDataProviderInterface.php | src/Data/Interfaces/AppData/AppDataProviderInterface.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Interfaces\AppData;
/**
* @template T
*/
interface AppDataProviderInterface {
/**
* @return T
*/
public function fetch(int $appid): mixed;
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Updaters/Market/MarketCrawler.php | src/Data/Updaters/Market/MarketCrawler.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Updaters\Market;
use AugmentedSteam\Server\Data\Managers\Market\ERarity;
use AugmentedSteam\Server\Data\Managers\Market\EType;
use AugmentedSteam\Server\Database\DMarketData;
use AugmentedSteam\Server\Database\DMarketIndex;
use AugmentedSteam\Server\... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Updaters/Rates/RatesUpdater.php | src/Data/Updaters/Rates/RatesUpdater.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Updaters\Rates;
use AugmentedSteam\Server\Data\Interfaces\RatesProviderInterface;
use AugmentedSteam\Server\Database\DCurrency;
use AugmentedSteam\Server\Database\TCurrency;
use IsThereAnyDeal\Database\DbDriver;
use Psr\Log\LoggerInterface;
class Ra... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Managers/UserManager.php | src/Data/Managers/UserManager.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Managers;
use AugmentedSteam\Server\Database\DBadges;
use AugmentedSteam\Server\Database\DUsersProfiles;
use AugmentedSteam\Server\Database\TBadges;
use AugmentedSteam\Server\Database\TUsersBadges;
use AugmentedSteam\Server\Database\TUsersProfiles;
u... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Managers/SteamRepManager.php | src/Data/Managers/SteamRepManager.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Managers;
use AugmentedSteam\Server\Data\Interfaces\SteamRepProviderInterface;
use AugmentedSteam\Server\Data\Objects\DSteamRep;
use AugmentedSteam\Server\Database\TSteamRep;
use IsThereAnyDeal\Database\DbDriver;
class SteamRepManager {
private ... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Managers/Market/MarketIndex.php | src/Data/Managers/Market/MarketIndex.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Managers\Market;
use AugmentedSteam\Server\Database\DMarketIndex;
use AugmentedSteam\Server\Database\TMarketIndex;
use IsThereAnyDeal\Database\DbDriver;
readonly class MarketIndex
{
public function __construct(
private DbDriver $db
)... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Managers/Market/EType.php | src/Data/Managers/Market/EType.php | <?php
namespace AugmentedSteam\Server\Data\Managers\Market;
enum EType: string
{
case Unknown = "unknown";
case Background = "background";
case Booster = "booster";
case Card = "card";
case Emoticon = "emoticon";
case Item = "item";
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Managers/Market/MarketManager.php | src/Data/Managers/Market/MarketManager.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Managers\Market;
use AugmentedSteam\Server\Database\DMarketData;
use AugmentedSteam\Server\Database\TMarketData;
use IsThereAnyDeal\Database\DbDriver;
class MarketManager
{
public function __construct(
private readonly DbDriver $db
)... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Managers/Market/ERarity.php | src/Data/Managers/Market/ERarity.php | <?php
namespace AugmentedSteam\Server\Data\Managers\Market;
enum ERarity: string
{
case Normal = "normal";
case Uncommon = "uncommon";
case Foil = "foil";
case Rare = "rare";
}
| php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Objects/DSteamRep.php | src/Data/Objects/DSteamRep.php | <?php
declare(strict_types=1);
namespace AugmentedSteam\Server\Data\Objects;
class DSteamRep
{
private int $steam64;
private ?string $rep;
private int $timestamp;
private bool $checked;
public function getSteam64(): int {
return $this->steam64;
}
public function setSteam64(int $s... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Objects/TwitchStream.php | src/Data/Objects/TwitchStream.php | <?php
namespace AugmentedSteam\Server\Data\Objects;
use JsonSerializable;
use Override;
class TwitchStream implements JsonSerializable
{
public string $userName;
public string $title;
public string $thumbnailUrl;
public int $viewerCount;
public string $game;
/**
* @return array<string, i... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Objects/Prices.php | src/Data/Objects/Prices.php | <?php
namespace AugmentedSteam\Server\Data\Objects;
use JsonSerializable;
class Prices implements JsonSerializable
{
public static function fromJson(string $json): self {
/** @var array<string, mixed> $data */
$data = json_decode($json, associative: true, flags: JSON_THROW_ON_ERROR);
$pric... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Objects/HLTB.php | src/Data/Objects/HLTB.php | <?php
namespace AugmentedSteam\Server\Data\Objects;
class HLTB implements \JsonSerializable
{
public ?int $story;
public ?int $extras;
public ?int $complete;
public string $url;
/**
* @return array<string, mixed>
*/
#[\Override]
public function jsonSerialize(): array {
re... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Objects/WSGF.php | src/Data/Objects/WSGF.php | <?php
namespace AugmentedSteam\Server\Data\Objects;
class WSGF implements \JsonSerializable
{
public string $path;
public string $wideScreenGrade;
public string $multiMonitorGrade;
public string $ultraWideScreenGrade;
public string $grade4k;
/**
* @return array<string, int|string>
*/... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Objects/Players.php | src/Data/Objects/Players.php | <?php
namespace AugmentedSteam\Server\Data\Objects;
class Players implements \JsonSerializable
{
public int $current = 0;
public int $peakToday = 0;
public int $peakAll = 0;
/**
* @return array<string, int>
*/
#[\Override]
public function jsonSerialize(): array {
return [
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Objects/SteamPeak/SteamPeekResults.php | src/Data/Objects/SteamPeak/SteamPeekResults.php | <?php
namespace AugmentedSteam\Server\Data\Objects\SteamPeak;
class SteamPeekResults implements \JsonSerializable {
/** @var list<SteamPeekGame> */
public array $games;
public function shuffle(bool $shuffle): self {
if ($shuffle) {
shuffle($this->games);
}
return $this... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Objects/SteamPeak/SteamPeekGame.php | src/Data/Objects/SteamPeak/SteamPeekGame.php | <?php
namespace AugmentedSteam\Server\Data\Objects\SteamPeak;
class SteamPeekGame implements \JsonSerializable {
public string $title;
public int $appid;
public float $rating;
public float $score;
/**
* @return array<string, mixed>
*/
#[\Override]
public function jsonSerialize()... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
IsThereAnyDeal/AugmentedSteam_Server | https://github.com/IsThereAnyDeal/AugmentedSteam_Server/blob/8a46ed2ae10106c1d4f0ec516aa04f1762093007/src/Data/Objects/Reviews/Reviews.php | src/Data/Objects/Reviews/Reviews.php | <?php
namespace AugmentedSteam\Server\Data\Objects\Reviews;
class Reviews implements \JsonSerializable
{
public ?Review $metauser = null;
public ?Review $opencritic = null;
/**
* @return array<string, mixed>
*/
#[\Override]
public function jsonSerialize(): array {
return [
... | php | MIT | 8a46ed2ae10106c1d4f0ec516aa04f1762093007 | 2026-01-05T04:53:50.744931Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.