Skip to content

Commit fe15a0d

Browse files
committed
Fixing strtolower bug
1 parent c851ed1 commit fe15a0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Environment.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static function isLinux()
4343
*/
4444
public static function isArm()
4545
{
46-
return strpos(strtolower(php_uname("m"), "arm")) === 0;
46+
return strpos(strtolower(php_uname("m")), "arm") === 0;
4747
}
4848

4949
/**

0 commit comments

Comments
 (0)