Skip to content

Commit f875a1c

Browse files
committed
Fix indentation
1 parent 41aff84 commit f875a1c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Rules/Digits.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Digits extends Rule
1313

1414
public function check($value)
1515
{
16-
$this->requireParameters($this->fillable_params);
16+
$this->requireParameters($this->fillable_params);
1717

1818
$length = (int) $this->parameter('length');
1919

src/Rules/DigitsBetween.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class DigitsBetween extends Rule
1313

1414
public function check($value)
1515
{
16-
$this->requireParameters($this->fillable_params);
16+
$this->requireParameters($this->fillable_params);
1717

1818
$min = (int) $this->parameter('min');
1919
$max = (int) $this->parameter('max');

0 commit comments

Comments
 (0)