mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 19:53:14 +01:00
24 lines
415 B
PHP
24 lines
415 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JMS\DiExtraBundle\Annotation;
|
|
|
|
// @see https://github.com/schmittjoh/JMSDiExtraBundle/blob/master/Annotation/InjectParams.php
|
|
|
|
if (class_exists('JMS\DiExtraBundle\Annotation\InjectParams')) {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* @Annotation
|
|
* @Target("METHOD")
|
|
*/
|
|
final class InjectParams
|
|
{
|
|
/**
|
|
* @var \JMS\DiExtraBundle\Annotation\Inject[]
|
|
*/
|
|
public $params = [];
|
|
}
|