- Fixes one line doc comments - Fixes parent call spacing - Fixes constant spacing Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
29 lines
579 B
PHP
29 lines
579 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\ConfigStorage\Features;
|
|
|
|
use PhpMyAdmin\Dbal\DatabaseName;
|
|
use PhpMyAdmin\Dbal\TableName;
|
|
|
|
/** @psalm-immutable */
|
|
final class PdfFeature
|
|
{
|
|
/** @var DatabaseName */
|
|
public $database;
|
|
|
|
/** @var TableName */
|
|
public $pdfPages;
|
|
|
|
/** @var TableName */
|
|
public $tableCoords;
|
|
|
|
public function __construct(DatabaseName $database, TableName $pdfPages, TableName $tableCoords)
|
|
{
|
|
$this->database = $database;
|
|
$this->pdfPages = $pdfPages;
|
|
$this->tableCoords = $tableCoords;
|
|
}
|
|
}
|