Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.0 #77

Merged
merged 4 commits into from
Feb 20, 2024
Merged

1.0 #77

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/Context.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@
class Context
{
/**
* Do not add readonly to these properties until https://github.com/myclabs/DeepCopy/issues/174 is fixed.
*
* @param array<int, bool> $completedSteps
* @param array<int, bool> $softSkippedSteps
* @param array<int, bool> $hardSkippedSteps
*/
public function __construct(
private object $data,
private readonly int $totalNumberOfSteps,
private int $totalNumberOfSteps,
private int $currentStepNumber = 1,
private array $completedSteps = [],
private array $softSkippedSteps = [],
Expand Down
3 changes: 0 additions & 3 deletions src/Definition.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ final class Definition
{
public const DEFAULT_GROUP = 'Default';

/**
* @var StringCollection
*/
private StringCollection $groups;

/**
Expand Down
Loading