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/test/bootstrap.php')
-rw-r--r--server/vendor/nikic/fast-route/test/bootstrap.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/server/vendor/nikic/fast-route/test/bootstrap.php b/server/vendor/nikic/fast-route/test/bootstrap.php
deleted file mode 100644
index 27e6d4c..0000000
--- a/server/vendor/nikic/fast-route/test/bootstrap.php
+++ /dev/null
@@ -1,11 +0,0 @@
-<?php
-
-require_once __DIR__ . '/../src/functions.php';
-
-spl_autoload_register(function($class) {
- if (strpos($class, 'FastRoute\\') === 0) {
- $dir = strcasecmp(substr($class, -4), 'Test') ? 'src/' : 'test/';
- $name = substr($class, strlen('FastRoute'));
- require __DIR__ . '/../' . $dir . strtr($name, '\\', DIRECTORY_SEPARATOR) . '.php';
- }
-});