1
0
Fork 0
composer/tests/Composer/Test/Plugin/Mock/Capability.php

30 lines
588 B
PHP
Raw Normal View History

2022-02-23 15:58:18 +00:00
<?php declare(strict_types=1);
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer\Test\Plugin\Mock;
class Capability implements \Composer\Plugin\Capability\Capability
{
2021-10-15 14:26:22 +00:00
/**
* @var mixed[]
*/
public $args;
2021-10-15 14:26:22 +00:00
/**
* @param mixed[] $args
*/
public function __construct(array $args)
{
$this->args = $args;
}
}