Fix linux string

This commit is contained in:
Dennis Eichhorn 2017-04-04 21:28:41 +02:00
parent 75d0f7c2b7
commit 3da4175bd2

View File

@ -44,7 +44,7 @@ final class OperatingSystem
return SystemType::OSX;
} elseif(stristr(PHP_OS, 'WIN') !== false) {
return SystemType::WIN;
} elseif(stristr(PHP_OS, 'LINIX') !== false) {
} elseif(stristr(PHP_OS, 'LINUX') !== false) {
return SystemType::LINUX;
}