This commit is contained in:
2020-09-04 10:44:25 +08:00
parent afdd0b8030
commit 1d72a1b6e8
+3 -1
View File
@@ -6,6 +6,7 @@ namespace Snowflake;
use Exception; use Exception;
use ReflectionException; use ReflectionException;
use Snowflake\Abstracts\Config;
use Snowflake\Di\Container; use Snowflake\Di\Container;
use Snowflake\Exception\NotFindClassException; use Snowflake\Exception\NotFindClassException;
use Swoole\Coroutine; use Swoole\Coroutine;
@@ -91,7 +92,8 @@ class Snowflake
*/ */
public static function getStoragePath() public static function getStoragePath()
{ {
$path = realpath(static::$service->storage); $default = APP_PATH . 'storage' . DIRECTORY_SEPARATOR;
$path = Config::get('storage', false, $default);
if (!is_dir($path)) { if (!is_dir($path)) {
mkdir($path); mkdir($path);
} }