for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Arrayy\Type;
use Arrayy\Collection\Collection;
use Arrayy\TypeCheck\TypeCheckArray;
use Arrayy\TypeCheck\TypeCheckInterface;
final class FloatArrayCollection extends Collection implements TypeInterface
{
/**
* The type (FQCN) associated with this collection.
*
* @return string|string[]|TypeCheckArray|TypeCheckInterface[]
*/
public function getType()
return ['float[]', 'int[]'];
}