File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -525,7 +525,7 @@ public function setDataByPath($path, $value)
525
525
$ keyDepth = count ($ pathParts );
526
526
if ($ keyDepth < 3 ) {
527
527
throw new \UnexpectedValueException (
528
- 'Minimum depth of configuration is 3. Your configuration depth is ' . $ keyDepth . ' . '
528
+ 'Minimal depth of configuration is 3. Your configuration depth is ' . $ keyDepth
529
529
);
530
530
}
531
531
Original file line number Diff line number Diff line change @@ -401,7 +401,7 @@ public function testSetDataByPathEmpty()
401
401
public function testSetDataByPathWrongDepth (string $ path )
402
402
{
403
403
$ currentDepth = count (explode ('/ ' , $ path ));
404
- $ expectedException = 'Minimum depth of configuration is 3. Your configuration depth is ' . $ currentDepth . ' . ' ;
404
+ $ expectedException = 'Minimal depth of configuration is 3. Your configuration depth is ' . $ currentDepth ;
405
405
$ this ->expectException (\UnexpectedValueException::class);
406
406
$ this ->expectExceptionMessage ($ expectedException );
407
407
$ value = 'value ' ;
You can’t perform that action at this time.
0 commit comments