File tree 2 files changed +4
-10
lines changed
2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -277,23 +277,19 @@ public function offsetGet($offset): array
277
277
*
278
278
* @param mixed $offset
279
279
* @param mixed $value
280
- *
281
- * @return $this
282
280
*/
283
- public function offsetSet ($ offset , $ value ): self
281
+ public function offsetSet ($ offset , $ value ): void
284
282
{
285
- return $ this ->set ($ offset , $ value );
283
+ $ this ->set ($ offset , $ value );
286
284
}
287
285
288
286
/**
289
287
* unset($array[$key]).
290
288
*
291
289
* @param mixed $offset
292
- *
293
- * @return $this
294
290
*/
295
- public function offsetUnset ($ offset ): self
291
+ public function offsetUnset ($ offset ): void
296
292
{
297
- return $ this ->delete ($ offset );
293
+ $ this ->delete ($ offset );
298
294
}
299
295
}
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ class BHDConverter
8
8
{
9
9
private $ dict ;
10
10
private $ patch ;
11
- private $ min_length ;
12
11
13
12
public function __construct (
14
13
$ dict = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ ' , // len:62
@@ -17,7 +16,6 @@ public function __construct(
17
16
) {
18
17
$ this ->dict = $ dict ;
19
18
$ this ->patch = $ patch ;
20
- $ this ->min_length = $ min_length ;
21
19
}
22
20
23
21
/**
You can’t perform that action at this time.
0 commit comments