Files
Pod2CPT/tools/phpstan-bootstrap.php
2026-08-24 08:46:51 -05:00

20 lines
408 B
PHP

<?php
/**
* WordPress runtime constants required during static analysis.
*
* @package RSS2CPT
*/
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', __DIR__ . '/wordpress/' );
}
if ( ! defined( 'WPINC' ) ) {
define( 'WPINC', 'wp-includes' );
}
if ( ! defined( 'MINUTE_IN_SECONDS' ) ) {
define( 'MINUTE_IN_SECONDS', 60 );
}
if ( ! defined( 'HOUR_IN_SECONDS' ) ) {
define( 'HOUR_IN_SECONDS', 3600 );
}