Home
last modified time | relevance | path

Searched refs:classOrObject (Results 1 – 3 of 3) sorted by relevance

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
DAssert.php1466 * @param string|object $classOrObject
1469 …public static function assertAttributeInstanceOf($expected, $attributeName, $classOrObject, $messa… argument
1473 static::readAttribute($classOrObject, $attributeName),
1503 * @param string|object $classOrObject
1506 …public static function assertAttributeNotInstanceOf($expected, $attributeName, $classOrObject, $me… argument
1510 static::readAttribute($classOrObject, $attributeName),
1540 * @param string|object $classOrObject
1543 …public static function assertAttributeInternalType($expected, $attributeName, $classOrObject, $mes… argument
1547 static::readAttribute($classOrObject, $attributeName),
1577 * @param string|object $classOrObject
[all …]
/plugin/findologicxmlexport/vendor/webmozart/assert/src/
DAssert.php921 public static function propertyExists($classOrObject, $property, $message = '') argument
923 if (!property_exists($classOrObject, $property)) {
931 public static function propertyNotExists($classOrObject, $property, $message = '') argument
933 if (property_exists($classOrObject, $property)) {
941 public static function methodExists($classOrObject, $method, $message = '') argument
943 if (!method_exists($classOrObject, $method)) {
951 public static function methodNotExists($classOrObject, $method, $message = '') argument
953 if (method_exists($classOrObject, $method)) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Assert/
DFunctions.php227 * @param mixed $classOrObject
230 function assertAttributeInstanceOf($expected, $attributeName, $classOrObject, $message = '') argument
243 * @param mixed $classOrObject
246 function assertAttributeInternalType($expected, $attributeName, $classOrObject, $message = '') argument
383 * @param mixed $classOrObject
386 function assertAttributeNotInstanceOf($expected, $attributeName, $classOrObject, $message = '') argument
399 * @param mixed $classOrObject
402 function assertAttributeNotInternalType($expected, $attributeName, $classOrObject, $message = '') argument