Home
last modified time | relevance | path

Searched refs:checkForObjectIdentity (Results 1 – 3 of 3) sorted by last modified time

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DAssert.php115 * @param bool $checkForObjectIdentity
124 $checkForObjectIdentity,
158 * @param bool $checkForObjectIdentity
168 $checkForObjectIdentity,
180 * @param bool $checkForObjectIdentity
190 $checkForObjectIdentity,
227 * @param bool $checkForObjectIdentity
237 $checkForObjectIdentity,
2388 * @param bool $checkForObjectIdentity
2393 …public static function contains($value, $checkForObjectIdentity = true, $checkForNonObjectIdentity… argument
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Assert/
H A DFunctions.php108 * @param bool $checkForObjectIdentity
111 …me, $haystackClassOrObject, $message = '', $ignoreCase = false, $checkForObjectIdentity = true, $c… argument
295 * @param bool $checkForObjectIdentity
298 …me, $haystackClassOrObject, $message = '', $ignoreCase = false, $checkForObjectIdentity = true, $c… argument
511 * @param bool $checkForObjectIdentity
514 …ontains($needle, $haystack, $message = '', $ignoreCase = false, $checkForObjectIdentity = true, $c… argument
958 * @param bool $checkForObjectIdentity
961 …ontains($needle, $haystack, $message = '', $ignoreCase = false, $checkForObjectIdentity = true, $c… argument
1630 * @param bool $checkForObjectIdentity
1635 function contains($value, $checkForObjectIdentity = true, $checkForNonObjectIdentity = false) argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DTraversableContains.php20 protected $checkForObjectIdentity; variable in PHPUnit_Framework_Constraint_TraversableContains
34 * @param bool $checkForObjectIdentity
39 …public function __construct($value, $checkForObjectIdentity = true, $checkForNonObjectIdentity = f… argument
43 if (!is_bool($checkForObjectIdentity)) {
51 $this->checkForObjectIdentity = $checkForObjectIdentity;
72 if ($this->checkForObjectIdentity && $element === $this->value) {
74 } elseif (!$this->checkForObjectIdentity && $element == $this->value) {