aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/bin
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/bin')
-rwxr-xr-xvendor/bin/generate_vcards5
-rwxr-xr-xvendor/bin/vobject5
2 files changed, 4 insertions, 6 deletions
diff --git a/vendor/bin/generate_vcards b/vendor/bin/generate_vcards
index b484cc11e..cfea10b99 100755
--- a/vendor/bin/generate_vcards
+++ b/vendor/bin/generate_vcards
@@ -112,9 +112,8 @@ if (PHP_VERSION_ID < 80000) {
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
) {
- include("phpvfscomposer://" . __DIR__ . '/..'.'/sabre/vobject/bin/generate_vcards');
- exit(0);
+ return include("phpvfscomposer://" . __DIR__ . '/..'.'/sabre/vobject/bin/generate_vcards');
}
}
-include __DIR__ . '/..'.'/sabre/vobject/bin/generate_vcards';
+return include __DIR__ . '/..'.'/sabre/vobject/bin/generate_vcards';
diff --git a/vendor/bin/vobject b/vendor/bin/vobject
index 0a78d4965..2a5007110 100755
--- a/vendor/bin/vobject
+++ b/vendor/bin/vobject
@@ -112,9 +112,8 @@ if (PHP_VERSION_ID < 80000) {
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
) {
- include("phpvfscomposer://" . __DIR__ . '/..'.'/sabre/vobject/bin/vobject');
- exit(0);
+ return include("phpvfscomposer://" . __DIR__ . '/..'.'/sabre/vobject/bin/vobject');
}
}
-include __DIR__ . '/..'.'/sabre/vobject/bin/vobject';
+return include __DIR__ . '/..'.'/sabre/vobject/bin/vobject';