Skip to content

Commit

Permalink
Merge pull request #83 from localheinz/fix/no-isset-rule
Browse files Browse the repository at this point in the history
Fix: Enable Expressions\NoIssetRule
  • Loading branch information
localheinz committed May 2, 2019
2 parents f8c9435 + 7979411 commit f5a704c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

For a full diff see [`0.8.0...master`](https://github.com/localheinz/phpstan-rules/compare/0.8.0...master).
For a full diff see [`0.8.1...master`](https://github.com/localheinz/phpstan-rules/compare/0.8.1...master).

## [`0.8.1`](https://github.com/localheinz/phpstan-rules/releases/tag/0.8.1)

For a full diff see [`0.8.0...0.8.1`](https://github.com/localheinz/phpstan-rules/compare/0.8.0...0.8.1).

### Fixed

* Actually enable `Expressions\NoIssetRule` ([#83](https://github.com/localheinz/phpstan-rules/pull/83)), by [@localheinz](https://github.com/localheinz)

## [`0.8.0`](https://github.com/localheinz/phpstan-rules/releases/tag/0.8.0)

Expand Down
2 changes: 2 additions & 0 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ parameters:
- PHPStan\Testing\RuleTestCase
excludes_analyse:
- %currentWorkingDirectory%/test/Fixture/
ignoreErrors:
- '#Language construct isset\(\) should not be used.#'
paths:
- src
- test
Expand Down
1 change: 1 addition & 0 deletions rules.neon
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ parameters:
rules:
- Localheinz\PHPStan\Rules\Closures\NoNullableReturnTypeDeclarationRule
- Localheinz\PHPStan\Rules\Closures\NoParameterWithNullableTypeDeclarationRule
- Localheinz\PHPStan\Rules\Expressions\NoIssetRule
- Localheinz\PHPStan\Rules\Functions\NoNullableReturnTypeDeclarationRule
- Localheinz\PHPStan\Rules\Functions\NoParameterWithNullableTypeDeclarationRule
- Localheinz\PHPStan\Rules\Functions\NoParameterWithNullDefaultValueRule
Expand Down

0 comments on commit f5a704c

Please sign in to comment.