for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TypedArray;
final class BoolArray extends AbstractTypedArray
{
/**
* @param array|null $source The source array
*/
public function __construct(array $source = null)
parent::__construct('is_bool', 'boolean', $source);
}