Minor change

This commit is contained in:
netkas 2024-12-23 21:21:30 -05:00
parent 7e4b02bc04
commit 830133d102
2 changed files with 87 additions and 81 deletions

View file

@ -1,14 +1,14 @@
<?php
namespace Socialbox\Abstracts;
namespace Socialbox\Abstracts;
use RuntimeException;
use Socialbox\Classes\CacheLayer\MemcachedCacheLayer;
use Socialbox\Classes\CacheLayer\RedisCacheLayer;
use Socialbox\Classes\Configuration;
use RuntimeException;
use Socialbox\Classes\CacheLayer\MemcachedCacheLayer;
use Socialbox\Classes\CacheLayer\RedisCacheLayer;
use Socialbox\Classes\Configuration;
abstract class CacheLayer
{
abstract class CacheLayer
{
private static ?CacheLayer $instance = null;
/**
@ -87,4 +87,4 @@ abstract class CacheLayer
return self::$instance;
}
}
}

View file

@ -127,6 +127,12 @@
return;
}
}
else
{
http_response_code(400);
print('External domains are not supported yet');
return;
}
try
{