| 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 |
* Generates PHP code compatible with PSR-2 and PSR-12. |
| 12 |
*/ |
| 13 |
final class PsrPrinter extends Printer |
| 14 |
{ |
| 15 |
/** @var string */ |
| 16 |
protected $indentation = ' '; |
| 17 |
/** @var int */ |
| 18 |
protected $linesBetweenMethods = 1; |
| 19 |
} |
| 20 |
|