first commit

This commit is contained in:
2023-09-12 21:41:04 +02:00
commit 3361a7f053
13284 changed files with 2116755 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
/**
* Class WPML_Debug_BackTrace
*
* @deprecated 4.2.8
*/
class WPML_Debug_BackTrace extends WPML\Utils\DebugBackTrace {
/**
* @param string $php_version Deprecated.
* @param int $limit
* @param bool $provide_object
* @param bool $ignore_args
* @param string $debug_backtrace_function
* @phpstan-ignore-next-line
*/
public function __construct(
$php_version = null,
$limit = 0,
$provide_object = false,
$ignore_args = true,
$debug_backtrace_function = null
) {
parent::__construct( $limit, $provide_object, $ignore_args, $debug_backtrace_function );
}
}