TypeCheckInterface.php
Namespace
JsonSchema\Constraints\TypeCheckFile
-
vendor/
justinrainbow/ json-schema/ src/ JsonSchema/ Constraints/ TypeCheck/ TypeCheckInterface.php
View source
<?php
namespace JsonSchema\Constraints\TypeCheck;
interface TypeCheckInterface {
public static function isObject($value);
public static function isArray($value);
public static function propertyGet($value, $property);
public static function propertySet(&$value, $property, $data);
public static function propertyExists($value, $property);
public static function propertyCount($value);
}
Interfaces
Title | Deprecated | Summary |
---|---|---|
TypeCheckInterface |