create-prisma-php-app 1.24.0 → 1.24.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bootstrap.php +13 -10
- package/package.json +1 -1
package/dist/bootstrap.php
CHANGED
|
@@ -871,16 +871,19 @@ try {
|
|
|
871
871
|
createUpdateRequestData();
|
|
872
872
|
}
|
|
873
873
|
|
|
874
|
-
$
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
874
|
+
if ($isWire && !$secondRequestC69CD) {
|
|
875
|
+
$_requestFilesJson = SETTINGS_PATH . '/request-data.json';
|
|
876
|
+
$_requestFilesData = file_exists($_requestFilesJson) ? json_decode(file_get_contents($_requestFilesJson), true) : [];
|
|
877
|
+
|
|
878
|
+
if ($_requestFilesData[$_requestUriForFilesIncludes]) {
|
|
879
|
+
$_requestDataToLoop = $_requestFilesData[$_requestUriForFilesIncludes];
|
|
880
|
+
|
|
881
|
+
foreach ($_requestDataToLoop['includedFiles'] as $file) {
|
|
882
|
+
if (file_exists($file)) {
|
|
883
|
+
ob_start();
|
|
884
|
+
require_once $file;
|
|
885
|
+
$childContent .= ob_get_clean();
|
|
886
|
+
}
|
|
884
887
|
}
|
|
885
888
|
}
|
|
886
889
|
}
|