| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* This file is part of the Nette Framework (https://nette.org) |
| 5 |
* Copyright (c) 2004 David Grudl (https://davidgrudl.com) |
| 6 |
*/ |
| 7 |
declare (strict_types=1); |
| 8 |
namespace Packetery\Nette\PhpGenerator; |
| 9 |
|
| 10 |
/** |
| 11 |
* Promoted parameter in constructor. |
| 12 |
*/ |
| 13 |
final class PromotedParameter extends Parameter |
| 14 |
{ |
| 15 |
use Traits\VisibilityAware; |
| 16 |
use Traits\CommentAware; |
| 17 |
} |
| 18 |
|