1
0
mirror of https://github.com/danog/file.git synced 2025-01-22 13:21:13 +01:00

fix instantiation derp

This commit is contained in:
Daniel Lowrey 2015-07-31 21:15:53 -04:00
parent 2ed5bae230
commit a8c2eb6bef

View File

@ -31,7 +31,7 @@ function driver() {
} elseif (\extension_loaded("eio")) {
return new EioDriver;
} else {
return BlockingDriver;
return new BlockingDriver;
}
}