'phar:///opt/jenkins/jobs/VuFindCode/workspace/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/../../../../../jetbrains/phpstorm-stubs/pcre/pcre.stub-1619532793', 'data' => array ( '54a316a3547e72ddd1bdd25d2f04bbba' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Perform a regular expression match * @link https://php.net/manual/en/function.preg-match.php * @param string $pattern

* The pattern to search for, as a string. *

* @param string $subject

* The input string. *

* @param string[] &$matches [optional]

* If matches is provided, then it is filled with * the results of search. $matches[0] will contain the * text that matched the full pattern, $matches[1] * will have the text that matched the first captured parenthesized * subpattern, and so on. *

* @param int $flags [optional]

* flags can be the following flag: * PREG_OFFSET_CAPTURE *

* If this flag is passed, for every occurring match the appendant string * offset will also be returned. Note that this changes the value of * matches into an array where every element is an * array consisting of the matched string at offset 0 * and its string offset into subject at offset 1. *
 * 
 * 
* The above example will output: *
 * Array
 * (
 *     [0] => Array
 *         (
 *             [0] => foobarbaz
 *             [1] => 0
 *         )
 *
 *     [1] => Array
 *         (
 *             [0] => foo
 *             [1] => 0
 *         )
 *
 *     [2] => Array
 *         (
 *             [0] => bar
 *             [1] => 3
 *         )
 *
 *     [3] => Array
 *         (
 *             [0] => baz
 *             [1] => 6
 *         )
 *
 * )
 * 
*
* PREG_UNMATCHED_AS_NULL *
* If this flag is passed, unmatched subpatterns are reported as NULL; * otherwise they are reported as an empty string. *
 * 
 * 
* The above example will output: *
 * array(4) {
 *   [0]=>
 *   string(2) "ac"
 *   [1]=>
 *   string(1) "a"
 *   [2]=>
 *   string(0) ""
 *   [3]=>
 *   string(1) "c"
 * }
 * array(4) {
 *   [0]=>
 *   string(2) "ac"
 *   [1]=>
 *   string(1) "a"
 *   [2]=>
 *   NULL
 *   [3]=>
 *   string(1) "c"
 * }
 * 
*
* @param int $offset [optional]

* Normally, the search starts from the beginning of the subject string. * The optional parameter offset can be used to * specify the alternate place from which to start the search (in bytes). *

*

* Using offset is not equivalent to passing * substr($subject, $offset) to * preg_match in place of the subject string, * because pattern can contain assertions such as * ^, $ or * (?<=x). Compare: *

 * $subject = "abcdef";
 * $pattern = \'/^def/\';
 * preg_match($pattern, $subject, $matches, PREG_OFFSET_CAPTURE, 3);
 * print_r($matches);
 * 
* The above example will output:

*
 * Array
 * (
 * )
 * 
*

* while this example *

* * $subject = "abcdef"; * $pattern = \'/^def/\'; * preg_match($pattern, substr($subject,3), $matches, PREG_OFFSET_CAPTURE); * print_r($matches); * *

* will produce *

*
 * Array
 * (
 *     [0] => Array
 *         (
 *             [0] => def
 *             [1] => 0
 *         )
 * )
 * 
* Alternatively, to avoid using substr(), use the \\G assertion rather * than the ^ anchor, or the A modifier instead, both of which work with * the offset parameter. *

* @return int|false preg_match returns 1 if the pattern * matches given subject, 0 if it does not, or FALSE * if an error occurred. */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => 'preg_match', 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), 'e2ddd61ee2fb9793018bfc3e13089a8f' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Perform a global regular expression match * @link https://php.net/manual/en/function.preg-match-all.php * @param string $pattern

* The pattern to search for, as a string. *

* @param string $subject

* The input string. *

* @param string[][] &$matches [optional]

* Array of all matches in multi-dimensional array ordered according to flags. *

* @param int $flags [optional]

* Can be a combination of the following flags (note that it doesn\'t make * sense to use PREG_PATTERN_ORDER together with * PREG_SET_ORDER): * PREG_PATTERN_ORDER *
* Orders results so that $matches[0] is an array of full * pattern matches, $matches[1] is an array of strings matched by * the first parenthesized subpattern, and so on. *

* @param int $offset [optional]

* Normally, the search starts from the beginning of the subject string. * The optional parameter offset can be used to * specify the alternate place from which to start the search (in bytes). *

*

* Using offset is not equivalent to passing * substr($subject, $offset) to * preg_match_all in place of the subject string, * because pattern can contain assertions such as * ^, $ or * (?<=x). See preg_match * for examples. *

*

* * preg_match_all("|]+>(.*)]+>|U", * "example: this is a test", * $out, PREG_PATTERN_ORDER); * echo $out[0][0] . ", " . $out[0][1] . "\\n"; * echo $out[1][0] . ", " . $out[1][1] . "\\n"; * * The above example will output:

*
 * example: , this is a test
 * example: , this is a test
 * 
*

* So, $out[0] contains array of strings that matched full pattern, * and $out[1] contains array of strings enclosed by tags. *

* @return int|false|null the number of full pattern matches (which might be zero), * or FALSE if an error occurred. */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => 'preg_match_all', 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '2a0f8afff713c2c68a973913b909a51d' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Perform a regular expression search and replace * @link https://php.net/manual/en/function.preg-replace.php * @param string|string[] $pattern

* The pattern to search for. It can be either a string or an array with * strings. *

*

* Several PCRE modifiers * are also available, including the deprecated \'e\' * (PREG_REPLACE_EVAL), which is specific to this function. *

* @param string|string[] $replacement

* The string or an array with strings to replace. If this parameter is a * string and the pattern parameter is an array, * all patterns will be replaced by that string. If both * pattern and replacement * parameters are arrays, each pattern will be * replaced by the replacement counterpart. If * there are fewer elements in the replacement * array than in the pattern array, any extra * patterns will be replaced by an empty string. *

*

* replacement may contain references of the form * \\\\n or (since PHP 4.0.4) * $n, with the latter form * being the preferred one. Every such reference will be replaced by the text * captured by the n\'th parenthesized pattern. * n can be from 0 to 99, and * \\\\0 or $0 refers to the text matched * by the whole pattern. Opening parentheses are counted from left to right * (starting from 1) to obtain the number of the capturing subpattern. * To use backslash in replacement, it must be doubled * ("\\\\\\\\" PHP string). *

*

* When working with a replacement pattern where a backreference is * immediately followed by another number (i.e.: placing a literal number * immediately after a matched pattern), you cannot use the familiar * \\\\1 notation for your backreference. * \\\\11, for example, would confuse * preg_replace since it does not know whether you * want the \\\\1 backreference followed by a literal * 1, or the \\\\11 backreference * followed by nothing. In this case the solution is to use * \\${1}1. This creates an isolated * $1 backreference, leaving the 1 * as a literal. *

*

* When using the deprecated e modifier, this function escapes * some characters (namely \', ", * \\ and NULL) in the strings that replace the * backreferences. This is done to ensure that no syntax errors arise * from backreference usage with either single or double quotes (e.g. * \'strlen(\\\'$1\\\')+strlen("$2")\'). Make sure you are * aware of PHP\'s string * syntax to know exactly how the interpreted string will look. *

* @param string|string[] $subject

* The string or an array with strings to search and replace. *

*

* If subject is an array, then the search and * replace is performed on every entry of subject, * and the return value is an array as well. *

* @param int $limit [optional]

* The maximum possible replacements for each pattern in each * subject string. Defaults to * -1 (no limit). *

* @param int &$count [optional]

* If specified, this variable will be filled with the number of * replacements done. *

* @return string|string[]|null preg_replace returns an array if the * subject parameter is an array, or a string * otherwise. *

*

* If matches are found, the new subject will * be returned, otherwise subject will be * returned unchanged or NULL if an error occurred. */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => 'preg_replace', 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), 'c4393738e84de49d479b9b2e05b7f558' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Perform a regular expression search and replace using a callback * @link https://php.net/manual/en/function.preg-replace-callback.php * @param string|string[] $pattern

* The pattern to search for. It can be either a string or an array with * strings. *

* @param callable $callback

* A callback that will be called and passed an array of matched elements * in the subject string. The callback should * return the replacement string. This is the callback signature: *

*

* stringhandler * arraymatches *

*

* You\'ll often need the callback function * for a preg_replace_callback in just one place. * In this case you can use an * anonymous function to * declare the callback within the call to * preg_replace_callback. By doing it this way * you have all information for the call in one place and do not * clutter the function namespace with a callback function\'s name * not used anywhere else. *

*

* preg_replace_callback and * anonymous function * * /* a unix-style command line filter to convert uppercase * * letters at the beginning of paragraphs to lowercase * / * $fp = fopen("php://stdin", "r") or die("can\'t read stdin"); * while (!feof($fp)) { * $line = fgets($fp); * $line = preg_replace_callback( * \'|

\\s*\\w|\', * function ($matches) { * return strtolower($matches[0]); * }, * $line * ); * echo $line; * } * fclose($fp); * *

* @param string|string[] $subject

* The string or an array with strings to search and replace. *

* @param int $limit [optional]

* The maximum possible replacements for each pattern in each * subject string. Defaults to * -1 (no limit). *

* @param int &$count [optional]

* If specified, this variable will be filled with the number of * replacements done. *

* @param int $flags [optional] * @return string|string[]|null preg_replace_callback returns an array if the * subject parameter is an array, or a string * otherwise. On errors the return value is NULL *

*

* If matches are found, the new subject will be returned, otherwise * subject will be returned unchanged. */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => 'preg_replace_callback', 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), 'be0acb6df82d88e3d894a27d4d8c2471' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Perform a regular expression search and replace using callbacks * @link https://php.net/manual/en/function.preg-replace-callback-array.php * @param array|callable[] $pattern An associative array mapping patterns (keys) to callbacks (values) * @param string|string[] $subject * @param int $limit [optional] * @param int &$count [optional] * @param int $flags [optional] * @return string|string[]|null

preg_replace_callback_array() returns an array if the subject parameter is an array, or a string otherwise. On errors the return value is NULL

*

If matches are found, the new subject will be returned, otherwise subject will be returned unchanged.

*/', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => 'preg_replace_callback_array', 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '1aa1d04af20ec7d9b52f8471ddcd73ec' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Perform a regular expression search and replace * @link https://php.net/manual/en/function.preg-filter.php * @param string|string[] $pattern * @param string|string[] $replacement * @param string|string[] $subject * @param int $limit [optional] * @param int &$count [optional] * @return string|string[]|null an array if the subject * parameter is an array, or a string otherwise. *

*

* If no matches are found or an error occurred, an empty array * is returned when subject is an array * or NULL otherwise. */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => 'preg_filter', 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '282131fc2ef924186b9f9f5d2f25a8ad' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Split string by a regular expression * @link https://php.net/manual/en/function.preg-split.php * @param string $pattern

* The pattern to search for, as a string. *

* @param string $subject

* The input string. *

* @param int $limit [optional]

* If specified, then only substrings up to limit * are returned with the rest of the string being placed in the last * substring. A limit of -1, 0 or NULL means "no limit" * and, as is standard across PHP, you can use NULL to skip to the * flags parameter. *

* @param int $flags [optional]

* flags can be any combination of the following * flags (combined with the | bitwise operator): * PREG_SPLIT_NO_EMPTY * If this flag is set, only non-empty pieces will be returned by * preg_split. *

* @return string[]|false an array containing substrings of subject * split along boundaries matched by pattern, or FALSE * if an error occurred. */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => 'preg_split', 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '169f5e4be80be6c3da87f26f9a22d295' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Quote regular expression characters * @link https://php.net/manual/en/function.preg-quote.php * @param string $str

* The input string. *

* @param string|null $delimiter [optional]

* If the optional delimiter is specified, it * will also be escaped. This is useful for escaping the delimiter * that is required by the PCRE functions. The / is the most commonly * used delimiter. *

* @return string the quoted (escaped) string. */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => 'preg_quote', 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '79a621b32854ec124f5d9ea6ce973357' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Return array entries that match the pattern * @link https://php.net/manual/en/function.preg-grep.php * @param string $pattern

* The pattern to search for, as a string. *

* @param array $array

* The input array. *

* @param int $flags [optional]

* If set to PREG_GREP_INVERT, this function returns * the elements of the input array that do not match * the given pattern. *

* @return array|false an array indexed using the keys from the * input array or false when pattern cannot be compiled. */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => 'preg_grep', 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), 'fa0d518e170c15f1a65fb77cf300b32b' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Returns the error code of the last PCRE regex execution * @link https://php.net/manual/en/function.preg-last-error.php * @return int one of the following constants (explained on their own page): * PREG_NO_ERROR * PREG_INTERNAL_ERROR * PREG_BACKTRACK_LIMIT_ERROR (see also pcre.backtrack_limit) * PREG_RECURSION_LIMIT_ERROR (see also pcre.recursion_limit) * PREG_BAD_UTF8_ERROR * PREG_BAD_UTF8_OFFSET_ERROR (since PHP 5.3.0) */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => 'preg_last_error', 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '47c3833e09eca6674581bd48c589ffa5' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Returns the error message of the last PCRE regex execution * * @return string one of the error messages or "No error" if there is no error. * @since 8.0 */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => 'preg_last_error_msg', 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '0f64a0bc58d1e9b2485f630735631674' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Orders results so that $matches[0] is an array of full pattern * matches, $matches[1] is an array of strings matched by the first * parenthesized subpattern, and so on. This flag is only used with * preg_match_all. * @link https://php.net/manual/en/pcre.constants.php */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '97946c82609301686a645806d8084bf5' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Returned by {@see preg_last_error()} if the last PCRE function failed due to limited JIT stack space. * @since 7.0 */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '49df971db9ce032a25fbe5f77f39f672' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Orders results so that $matches[0] is an array of first set of * matches, $matches[1] is an array of second set of matches, and so * on. This flag is only used with preg_match_all. * @link https://php.net/manual/en/pcre.constants.php */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '0f9899074732b4f04c2bd0437b9c76f9' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * See the description of * PREG_SPLIT_OFFSET_CAPTURE. * @link https://php.net/manual/en/pcre.constants.php */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '02a37a9428d0bc7bbd215e8cde1f446e' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * This flag tells preg_split to return only non-empty * pieces. * @link https://php.net/manual/en/pcre.constants.php */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), 'f60c24187de554f32bbfcfe0faebaaf3' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * This flag tells preg_split to capture * parenthesized expression in the delimiter pattern as well. * @link https://php.net/manual/en/pcre.constants.php */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '8042b8f341924f18629c6359a08fd1c6' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * If this flag is set, for every occurring match the appendant string * offset will also be returned. Note that this changes the return * values in an array where every element is an array consisting of the * matched string at offset 0 and its string offset within subject at * offset 1. This flag is only used for preg_split. * @link https://php.net/manual/en/pcre.constants.php */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '52e66dac387d64c54d11fb620fe95e89' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Returned by preg_last_error if there were no * errors. * @link https://php.net/manual/en/pcre.constants.php */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '74623803d43a5371a971aaab353d3a43' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Returned by preg_last_error if there was an * internal PCRE error. * @link https://php.net/manual/en/pcre.constants.php */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '29c00319e82fc16533dbf0e26847b4fa' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Returned by preg_last_error if backtrack limit was exhausted. * @link https://php.net/manual/en/pcre.constants.php */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), 'fc619caabf6ae8f9a5d0d7b969e5ef02' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Returned by preg_last_error if recursion limit was exhausted. * @link https://php.net/manual/en/pcre.constants.php */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '9d9e02a54363755b8fd0c5aa2158148c' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Returned by preg_last_error if the last error was * caused by malformed UTF-8 data (only when running a regex in UTF-8 mode). * @link https://php.net/manual/en/pcre.constants.php */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), 'edb317a1e8c582d1e49e264c2c3c228d' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * Returned by preg_last_error if the offset didn\'t * correspond to the begin of a valid UTF-8 code point (only when running * a regex in UTF-8 * mode). * @link https://php.net/manual/en/pcre.constants.php */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '39aee69122dcbee6f42f35a727af5013' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * This flag tells {@see preg_match()} and {@see preg_match_all()} * to include unmatched subpatterns in $matches as NULL values. * Without this flag, unmatched subpatterns are reported as empty strings, * as if they were empty matches. Setting this flag allows to distinguish between these two cases. * @since 7.2 */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), 'df4a40381ddac05da4a0db11bee5a4d2' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * PCRE version and release date (e.g. "7.0 18-Dec-2006"). * @link https://php.net/manual/en/pcre.constants.php */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), '05fe89df5b7e5858c329a0ee7734cabd' => PHPStan\PhpDoc\NameScopedPhpDocString::__set_state(array( 'phpDocString' => '/** * @since 7.3 */', 'nameScope' => PHPStan\Analyser\NameScope::__set_state(array( 'namespace' => NULL, 'uses' => array ( 'pure' => 'JetBrains\\PhpStorm\\Pure', ), 'className' => NULL, 'functionName' => NULL, 'templateTypeMap' => PHPStan\Type\Generic\TemplateTypeMap::__set_state(array( 'types' => array ( ), )), 'typeAliasesMap' => array ( ), 'bypassTypeAliases' => false, )), )), ), ));