mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-21 10:33:44 +03:00
25 lines
418 B
PHP
25 lines
418 B
PHP
<?php
|
|
/*
|
|
* These are stubs for closed source code, or things that only apply to local environments.
|
|
*/
|
|
|
|
|
|
namespace {
|
|
defined( 'WPINC' ) || die();
|
|
|
|
/**
|
|
* Stub.
|
|
*/
|
|
function bump_stats_extra( $name, $value, $views = 1 ) {
|
|
}
|
|
}
|
|
|
|
namespace WordPressdotorg\MU_Plugins\Helpers {
|
|
/**
|
|
* Stub.
|
|
*/
|
|
function natural_language_join( array $list, $conjunction = 'and' ): string {
|
|
return implode( ', ', $list );
|
|
}
|
|
}
|