We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d68950a commit a0fb4e1Copy full SHA for a0fb4e1
src/FileUpdater.php
@@ -253,6 +253,9 @@ public static function upgradePhpFiles(): void
253
if (strpos($fileStr, 'function clear(): void') === false) {
254
$fileStr = str_replace('function clear()', 'function clear(): void', $fileStr);
255
}
256
+
257
+ // reemplazamos self::$dataBase con self::db()
258
+ $fileStr = str_replace('self::$dataBase', 'self::db()', $fileStr);
259
260
261
// reemplazamos loadFromCode('', $where) por loadWhere($where)
0 commit comments