mirror of
https://gh.wpcy.net/https://github.com/wp-cli/i18n-command.git
synced 2026-06-11 01:34:23 +08:00
36 lines
489 B
Text
36 lines
489 B
Text
<?php
|
|
|
|
namespace Gettext\Extractors {
|
|
abstract class PhpCode {
|
|
/**
|
|
* @var array<mixed>
|
|
*/
|
|
public static $options;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected static $functionsScannerClass;
|
|
}
|
|
|
|
abstract class JsCode {
|
|
/**
|
|
* @var array<mixed>
|
|
*/
|
|
public static $options;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected static $functionsScannerClass;
|
|
}
|
|
}
|
|
|
|
namespace Gettext\Generators {
|
|
class PhpArray {
|
|
/**
|
|
* @var array<string, bool>
|
|
*/
|
|
public static $options;
|
|
}
|
|
}
|