1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
<?php
declare(strict_types=1);
namespace DI\Test\UnitTest\Definition\Source\Fixtures;
use DI\Attribute\Inject;
class AttributeFixture
{
#[Inject('foo')]
protected $property1;
#[Inject]
protected AnnotationFixture2 $property2;
#[Inject(name: 'foo')]
protected $property3;
protected $unannotatedProperty;
/**
* Static property shouldn't be injected.
*/
#[Inject('foo')]
protected static $staticProperty;
#[Inject(['foo', 'bar'])]
public function __construct($param1, $param2)
{
}
#[Inject]
public function method1()
{
}
#[Inject(['foo', 'bar'])]
public function method2($param1, $param2)
{
}
#[Inject]
public function method3(AnnotationFixture2 $param1)
{
}
/**
* @param AnnotationFixture2 $param1
* @param AnnotationFixture2 $param2
*/
#[Inject(['foo', 'bar'])]
public function method4($param1, $param2)
{
}
/**
* Indexed by name, param1 not specified:.
*/
#[Inject(['param2' => 'bar'])]
public function method5($param1, $param2)
{
}
public function unannotatedMethod()
{
}
#[Inject(['foo'])]
public function optionalParameter(?\stdClass $optional1 = null, ?\stdClass $optional2 = null)
{
}
#[Inject]
public static function staticMethod()
{
}
}
|