Skip to content

Commit

Permalink
fix wrong return phpdoc in Step.php
Browse files Browse the repository at this point in the history
  • Loading branch information
smajti1 committed Mar 3, 2022
1 parent 2b83390 commit f3a5081
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.7.1] - 2022-03-03
### Fixed
- wrong return phpdoc in Step.php

## [1.7.0] - 2022-03-03
### Added
- phpstan library to dev dependencies
Expand Down
2 changes: 1 addition & 1 deletion src/Step.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function __construct(int $number, $key, int $index, Wizard $wizard)
abstract public function process(Request $request);

/**
* @return array{string, string}|array{}
* @return array<string, string>|array{}
*/
public function rules(Request $request = null): array
{
Expand Down

0 comments on commit f3a5081

Please sign in to comment.