src/Phan/Plugin/Internal/IssueFixingPlugin/FileEditSet.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Phan\Plugin\Internal\IssueFixingPlugin;

/**
 * Represents a set of changes to be made to file contents.
 * The structure of this will change.
 * @phan-immutable
 */
class FileEditSet
{
    /** @var FileEdit[] a list of non-conflicting file edits in this set */
    public $edits;

    /**
     * @param FileEdit[] $edits
     */
    public function __construct(array $edits)
    {
        $this->edits = $edits;
    }
}