phpstan-polyfill.php 330 Bytes
Newer Older
1 2 3 4
<?php

declare(strict_types=1);

Sergei Morozov's avatar
Sergei Morozov committed
5
(static function () : void {
6 7 8 9 10 11 12 13
    foreach (['ibm_db2', 'mysqli', 'oci8', 'sqlsrv', 'pgsql'] as $extension) {
        if (extension_loaded($extension)) {
            continue;
        }

        require sprintf(__DIR__ . '/../vendor/jetbrains/phpstorm-stubs/%1$s/%1$s.php', $extension);
    }
})();