Skip to content

Commit 592f6c7

Browse files
committed
fix whitespace indentation tabs v spaces
1 parent 93e0a1c commit 592f6c7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/Validator.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -76,21 +76,21 @@ function ($value) {
7676
'is not an integer'
7777
);
7878
}
79-
79+
8080
/**
8181
* Asset that each specified variable is a boolean.
8282
*
8383
* @return \Dotenv\Validator
8484
*/
8585
public function isBoolean()
8686
{
87-
return $this->assertCallback(
88-
function($value) {
89-
return (filter_var($value, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE) !== NULL);
90-
},
91-
'is not a boolean'
92-
);
93-
}
87+
return $this->assertCallback(
88+
function($value) {
89+
return (filter_var($value, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE) !== NULL);
90+
},
91+
'is not a boolean'
92+
);
93+
}
9494

9595
/**
9696
* Assert that each variable is amongst the given choices.

0 commit comments

Comments
 (0)