You are here

protected property PHPUnit_Framework_Constraint_IsType::$types in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Constraint/IsType.php \PHPUnit_Framework_Constraint_IsType::types

Type: array

File

vendor/phpunit/phpunit/src/Framework/Constraint/IsType.php, line 36

Class

PHPUnit_Framework_Constraint_IsType
Constraint that asserts that the value it is evaluated for is of a specified type.

Code

protected $types = array(
  'array' => true,
  'boolean' => true,
  'bool' => true,
  'double' => true,
  'float' => true,
  'integer' => true,
  'int' => true,
  'null' => true,
  'numeric' => true,
  'object' => true,
  'real' => true,
  'resource' => true,
  'string' => true,
  'scalar' => true,
  'callable' => true,
);