Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit 6207057

Browse files
committed
CS fixes per phpcs
1 parent 5784b9c commit 6207057

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Barcode/Code128.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,10 @@ public function hasValidCharacters($value)
180180
break;
181181
}
182182

183-
if (!empty($value) && strlen($value) > 1) {
183+
if (! empty($value) && strlen($value) > 1) {
184184
$value = $strWrapper->substr($value, 1, null);
185185
}
186-
186+
187187
$read = $set;
188188
}
189189

src/EmailAddress.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ protected function idnToUtf8($email)
545545
if (strlen($email) == 0) {
546546
return $email;
547547
}
548-
548+
549549
if (extension_loaded('intl')) {
550550
// The documentation does not clarify what kind of failure
551551
// can happen in idn_to_utf8. One can assume if the source

0 commit comments

Comments
 (0)