for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace League\Container\Argument\Literal;
use League\Container\Argument\LiteralArgument;
class ArrayArgument extends LiteralArgument
{
public function __construct(array $value)
parent::__construct($value, LiteralArgument::TYPE_ARRAY);
}