Skip to content

Commit fc95f4e

Browse files
Merge branch 'release/5.0.1'
2 parents 7d91339 + 3536799 commit fc95f4e

File tree

6 files changed

+13
-4
lines changed

6 files changed

+13
-4
lines changed

.php-cs-fixer.dist.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,8 @@
232232
])
233233
->name('*.php')
234234
->notName('*.blade.php')
235+
// Remove when dropping support for PHP 8.0
236+
->notName('MethodsTest.php')
235237
->ignoreDotFiles(true)
236238
->ignoreVCS(true);
237239

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to `sebastiaanluca/php-pipe-operator` will be documented in
44

55
Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
66

7+
## 5.0.1 (2022-03-17)
8+
9+
### Fixed
10+
11+
- Fixed linting
12+
- Fixed test namespaces
13+
714
## 5.0.0 (2022-03-17)
815

916
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Method chaining (or fluent expressions) **for any value using any method.**
1919
- [How to install](#how-to-install)
2020
- [How to use](#how-to-use)
2121
- [The basics](#the-basics)
22-
- [Using first class callable syntax](#using-first-class-callable-syntax-enabling-ide-autocompletion)
22+
- [Using first class callable syntax (enabling IDE autocompletion)](#using-first-class-callable-syntax-enabling-ide-autocompletion)
2323
- [Using closures](#using-closures)
2424
- [Using class methods](#using-class-methods)
2525
- [What does it solve?](#what-does-it-solve)

tests/IdentifierTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace SebastiaanLuca\PipeOperator\Tests\Unit\Classes;
5+
namespace SebastiaanLuca\PipeOperator\Tests;
66

77
use PHPUnit\Framework\TestCase;
88

tests/MethodsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace SebastiaanLuca\PipeOperator\Tests\Unit\Classes;
5+
namespace SebastiaanLuca\PipeOperator\Tests;
66

77
use Closure;
88
use PHPUnit\Framework\TestCase;

tests/ObjectTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace SebastiaanLuca\PipeOperator\Tests\Unit\Classes;
5+
namespace SebastiaanLuca\PipeOperator\Tests;
66

77
use PHPUnit\Framework\TestCase;
88
use SebastiaanLuca\PipeOperator\Pipe;

0 commit comments

Comments
 (0)