File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ### Added
10
+ - Implementation of SLOP parameter
11
+
9
12
## [ 1.3.0]
10
13
11
14
### Added
Original file line number Diff line number Diff line change @@ -109,8 +109,8 @@ class Search implements Builder, Pipeable
109
109
/** @var null|Highlight */
110
110
private $ highlight ;
111
111
112
- /** @var int */
113
- private $ slop = 0 ;
112
+ /** @var null| int */
113
+ private $ slop = null ;
114
114
115
115
/** @var bool */
116
116
private $ inOrder = false ;
@@ -165,7 +165,7 @@ public function reset(): Builder
165
165
$ this ->returns = [];
166
166
$ this ->summarize = null ;
167
167
$ this ->highlight = null ;
168
- $ this ->slop = 0 ;
168
+ $ this ->slop = null ;
169
169
$ this ->inOrder = false ;
170
170
$ this ->language = null ;
171
171
$ this ->expander = null ;
You can’t perform that action at this time.
0 commit comments