File tree Expand file tree Collapse file tree 6 files changed +13
-4
lines changed
Expand file tree Collapse file tree 6 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ All notable changes to `sebastiaanluca/php-pipe-operator` will be documented in
44
55Updates 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
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change 22
33declare (strict_types=1 );
44
5- namespace SebastiaanLuca \PipeOperator \Tests \ Unit \ Classes ;
5+ namespace SebastiaanLuca \PipeOperator \Tests ;
66
77use PHPUnit \Framework \TestCase ;
88
Original file line number Diff line number Diff line change 22
33declare (strict_types=1 );
44
5- namespace SebastiaanLuca \PipeOperator \Tests \ Unit \ Classes ;
5+ namespace SebastiaanLuca \PipeOperator \Tests ;
66
77use Closure ;
88use PHPUnit \Framework \TestCase ;
Original file line number Diff line number Diff line change 22
33declare (strict_types=1 );
44
5- namespace SebastiaanLuca \PipeOperator \Tests \ Unit \ Classes ;
5+ namespace SebastiaanLuca \PipeOperator \Tests ;
66
77use PHPUnit \Framework \TestCase ;
88use SebastiaanLuca \PipeOperator \Pipe ;
You can’t perform that action at this time.
0 commit comments