Home
last modified time | relevance | path

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

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DAssert.php116 * @param bool $checkForNonObjectIdentity
125 $checkForNonObjectIdentity
159 * @param bool $checkForNonObjectIdentity
169 $checkForNonObjectIdentity
181 * @param bool $checkForNonObjectIdentity
191 $checkForNonObjectIdentity
228 * @param bool $checkForNonObjectIdentity
238 $checkForNonObjectIdentity
2389 * @param bool $checkForNonObjectIdentity
2393 …tatic function contains($value, $checkForObjectIdentity = true, $checkForNonObjectIdentity = false) argument
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Assert/
H A DFunctions.php109 * @param bool $checkForNonObjectIdentity
111 …sage = '', $ignoreCase = false, $checkForObjectIdentity = true, $checkForNonObjectIdentity = false) argument
296 * @param bool $checkForNonObjectIdentity
298 …sage = '', $ignoreCase = false, $checkForObjectIdentity = true, $checkForNonObjectIdentity = false) argument
512 * @param bool $checkForNonObjectIdentity
514 …sage = '', $ignoreCase = false, $checkForObjectIdentity = true, $checkForNonObjectIdentity = false) argument
959 * @param bool $checkForNonObjectIdentity
961 …sage = '', $ignoreCase = false, $checkForObjectIdentity = true, $checkForNonObjectIdentity = false) argument
1631 * @param bool $checkForNonObjectIdentity
1635 function contains($value, $checkForObjectIdentity = true, $checkForNonObjectIdentity = false) argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DTraversableContains.php25 protected $checkForNonObjectIdentity; variable in PHPUnit_Framework_Constraint_TraversableContains
35 * @param bool $checkForNonObjectIdentity
39 …public function __construct($value, $checkForObjectIdentity = true, $checkForNonObjectIdentity = f… argument
47 if (!is_bool($checkForNonObjectIdentity)) {
52 $this->checkForNonObjectIdentity = $checkForNonObjectIdentity;
80 if ($this->checkForNonObjectIdentity && $element === $this->value) {
82 } elseif (!$this->checkForNonObjectIdentity && $element == $this->value) {