| 1 |
<?php |
| 2 |
|
| 3 |
declare(strict_types=1); |
| 4 |
|
| 5 |
namespace WPDeveloper\BetterDocs\Dependencies\DI\Annotation; |
| 6 |
|
| 7 |
/** |
| 8 |
* "Injectable" annotation. |
| 9 |
* |
| 10 |
* Marks a class as injectable |
| 11 |
* |
| 12 |
* @api |
| 13 |
* |
| 14 |
* @Annotation |
| 15 |
* @Target("CLASS") |
| 16 |
* |
| 17 |
* @author Domenic Muskulus <domenic@muskulus.eu> |
| 18 |
* @author Matthieu Napoli <matthieu@mnapoli.fr> |
| 19 |
*/ |
| 20 |
final class Injectable |
| 21 |
{ |
| 22 |
/** |
| 23 |
* Should the object be lazy-loaded. |
| 24 |
* @var bool|null |
| 25 |
*/ |
| 26 |
private $lazy; |
| 27 |
|
| 28 |
public function __construct(array $values) |
| 29 |
{ |
| 30 |
if (isset($values['lazy'])) { |
| 31 |
$this->lazy = (bool) $values['lazy']; |
| 32 |
} |
| 33 |
} |
| 34 |
|
| 35 |
/** |
| 36 |
* @return bool|null |
| 37 |
*/ |
| 38 |
public function isLazy() |
| 39 |
{ |
| 40 |
return $this->lazy; |
| 41 |
} |
| 42 |
} |
| 43 |
|