Skip to content

Commit 87bb135

Browse files
author
Nicolas Perraut
authored
Fix StyleCI lint
1 parent 7490ed6 commit 87bb135

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Support/Stringable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public function explode($delimiter, $limit = PHP_INT_MAX)
193193
{
194194
return collect(explode($delimiter, $this->value, $limit));
195195
}
196-
196+
197197
/**
198198
* Split string by a regular expression.
199199
*
@@ -206,7 +206,7 @@ public function split($pattern, $limit = -1, $flags = 0)
206206
{
207207
$keywords = preg_split($pattern, $this->value, $limit, $flags);
208208

209-
if(! $keywords) {
209+
if (! $keywords) {
210210
return collect();
211211
}
212212

0 commit comments

Comments
 (0)