Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/lookup-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'server/vendor/nikic/fast-route/src/bootstrap.php')
-rw-r--r--server/vendor/nikic/fast-route/src/bootstrap.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/server/vendor/nikic/fast-route/src/bootstrap.php b/server/vendor/nikic/fast-route/src/bootstrap.php
deleted file mode 100644
index add216c..0000000
--- a/server/vendor/nikic/fast-route/src/bootstrap.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
-
-namespace FastRoute;
-
-require __DIR__ . '/functions.php';
-
-spl_autoload_register(function($class) {
- if (strpos($class, 'FastRoute\\') === 0) {
- $name = substr($class, strlen('FastRoute'));
- require __DIR__ . strtr($name, '\\', DIRECTORY_SEPARATOR) . '.php';
- }
-});