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

declare(strict_types=1);

5 6 7 8
// PHPStan does not read global constants from the stubs yet, remove this when it does
if (defined('OCI_NO_AUTO_COMMIT')) {
    return;
}
9

10
define('OCI_NO_AUTO_COMMIT', 0);