本文整理汇总了PHP中MWDebug::deprecated方法的典型用法代码示例。如果您正苦于以下问题:PHP MWDebug::deprecated方法的具体用法?PHP MWDebug::deprecated怎么用?PHP MWDebug::deprecated使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MWDebug
的用法示例。
在下文中一共展示了MWDebug::deprecated方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testAvoidNonConsecutivesDuplicateDeprecations
/**
* @covers MWDebug::deprecated
*/
public function testAvoidNonConsecutivesDuplicateDeprecations()
{
MWDebug::deprecated('wfOldFunction', '1.0', 'component');
MWDebug::warning('some warning');
MWDebug::log('we could have logged something too');
// Another deprecation
MWDebug::deprecated('wfOldFunction', '1.0', 'component');
// assertCount() not available on WMF integration server
$this->assertEquals(3, count(MWDebug::getLog()), "Only one deprecated warning per function should be kept");
}
示例2: wfDeprecated
/**
* Throws a warning that $function is deprecated
*
* @param string $function
* @param string|bool $version Version of MediaWiki that the function
* was deprecated in (Added in 1.19).
* @param string|bool $component Added in 1.19.
* @param int $callerOffset How far up the call stack is the original
* caller. 2 = function that called the function that called
* wfDeprecated (Added in 1.20)
*
* @return null
*/
function wfDeprecated($function, $version = false, $component = false, $callerOffset = 2)
{
MWDebug::deprecated($function, $version, $component, $callerOffset + 1);
}
示例3: wfDeprecated
/**
* Throws a warning that $function is deprecated
*
* @param $function String
* @param $version String|false: Added in 1.19.
* @param $component String|false: Added in 1.19.
*
* @return null
*/
function wfDeprecated($function, $version = false, $component = false)
{
static $functionsWarned = array();
MWDebug::deprecated($function, $version, $component);
if (!isset($functionsWarned[$function])) {
$functionsWarned[$function] = true;
if ($version) {
global $wgDeprecationReleaseLimit;
if ($wgDeprecationReleaseLimit && $component === false) {
# Strip -* off the end of $version so that branches can use the
# format #.##-branchname to avoid issues if the branch is merged into
# a version of MediaWiki later than what it was branched from
$comparableVersion = preg_replace('/-.*$/', '', $version);
# If the comparableVersion is larger than our release limit then
# skip the warning message for the deprecation
if (version_compare($wgDeprecationReleaseLimit, $comparableVersion, '<')) {
return;
}
}
$component = $component === false ? 'MediaWiki' : $component;
wfWarn("Use of {$function} was deprecated in {$component} {$version}.", 2);
} else {
wfWarn("Use of {$function} is deprecated.", 2);
}
}
}