mirror of
https://github.com/flarum/framework.git
synced 2025-02-11 05:21:03 +08:00
10 lines
149 B
PHP
10 lines
149 B
PHP
![]() |
<?php namespace Flarum;
|
||
|
|
||
|
class Core
|
||
|
{
|
||
|
public static function isInstalled()
|
||
|
{
|
||
|
return file_exists(base_path('../config.php'));
|
||
|
}
|
||
|
}
|