Skip to content

Commit 0f7673f

Browse files
Fix php Uncaught Error (undeclared static property) (#2)
1 parent f5a2751 commit 0f7673f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Config/MainConfig.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,13 @@ class MainConfig
5656
*
5757
* @var \PDO|string
5858
*/
59-
public $logDatabase = '';
59+
public static $logDatabase = '';
6060

6161
/**
6262
* log dafault database table name
6363
*/
6464
public static string $logDatabaseTableName = 'logs';
6565

66-
6766
/**
6867
* log dafault database column name
6968
*/

0 commit comments

Comments
 (0)