1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-21 14:37:49 +00:00
Files
matomo/bootstrap-phpstan.php
Stefan Giehl 0f317512ee Introduce PHPStan at level 0 (#23050)
* Require PHPStan
* Add GitHub action
* Remove bootstrap file from build
* Add composer script for easier use
2025-03-02 04:59:52 +13:00

33 خطوط
701 B
PHP

<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik;
use Piwik\Exception\NotYetInstalledException;
class Manifest
{
public static $files = [];
}
define('PIWIK_DOCUMENT_ROOT', dirname(__FILE__) == '/' ? '' : dirname(__FILE__));
define('PIWIK_INCLUDE_PATH', PIWIK_DOCUMENT_ROOT);
require_once PIWIK_INCLUDE_PATH . '/core/bootstrap.php';
if (!defined('PIWIK_PRINT_ERROR_BACKTRACE')) {
define('PIWIK_PRINT_ERROR_BACKTRACE', false);
}
$environment = new \Piwik\Application\Environment(null);
try {
$environment->init();
} catch (NotYetInstalledException $e) {
}