<?phpnamespaceHamcrest\Type;
/*
Copyright (c) 2010 hamcrest.org
*/useHamcrest\Core\IsTypeOf;
/**
* Tests whether the value is an array.
*/classIsArrayextendsIsTypeOf{
/**
* Creates a new instance of IsArray
*/publicfunction__construct()
{
parent::__construct('array');
}
/**
* Is the value an array?
*
* @factory
*/publicstaticfunctionarrayValue()
{
returnnewself;
}
}