Skip to content

Commit edd7484

Browse files
authored
Apply fixes from StyleCI (#10)
1 parent 47f4f4e commit edd7484

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Rules/Blacklist.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ class Blacklist implements Rule
99
/**
1010
* @var array
1111
*/
12-
1312
protected $blacklist = [];
13+
1414
/**
1515
* Create a new rule instance.
1616
*
@@ -30,7 +30,7 @@ public function __construct()
3030
*/
3131
public function passes($attribute, $value)
3232
{
33-
return !str_contains($value, $this->blacklist);
33+
return ! str_contains($value, $this->blacklist);
3434
}
3535

3636
/**

0 commit comments

Comments
 (0)