From 737e83edf59bdd9cb909cdc65c34c64f7ac07b85 Mon Sep 17 00:00:00 2001 From: addshore Date: Sat, 2 Apr 2016 12:22:00 +0300 Subject: [PATCH] Move statsd files in libs to own directory Change-Id: Ia3ac9441d7548fedb672e3f2567be7c4eafae208 --- autoload.php | 4 ++-- includes/libs/{ => stats}/BufferingStatsdDataFactory.php | 0 includes/libs/{ => stats}/NullStatsdDataFactory.php | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename includes/libs/{ => stats}/BufferingStatsdDataFactory.php (100%) rename includes/libs/{ => stats}/NullStatsdDataFactory.php (100%) diff --git a/autoload.php b/autoload.php index c62e99d3ee..df38b3a2a2 100644 --- a/autoload.php +++ b/autoload.php @@ -185,7 +185,7 @@ $wgAutoloadLocalClasses = [ 'BmpHandler' => __DIR__ . '/includes/media/BMP.php', 'BotPassword' => __DIR__ . '/includes/user/BotPassword.php', 'BrokenRedirectsPage' => __DIR__ . '/includes/specials/SpecialBrokenRedirects.php', - 'BufferingStatsdDataFactory' => __DIR__ . '/includes/libs/BufferingStatsdDataFactory.php', + 'BufferingStatsdDataFactory' => __DIR__ . '/includes/libs/stats/BufferingStatsdDataFactory.php', 'CLIParser' => __DIR__ . '/maintenance/parse.php', 'CSSMin' => __DIR__ . '/includes/libs/CSSMin.php', 'CacheDependency' => __DIR__ . '/includes/cache/CacheDependency.php', @@ -893,7 +893,7 @@ $wgAutoloadLocalClasses = [ 'NullJob' => __DIR__ . '/includes/jobqueue/jobs/NullJob.php', 'NullLockManager' => __DIR__ . '/includes/filebackend/lockmanager/LockManager.php', 'NullRepo' => __DIR__ . '/includes/filerepo/NullRepo.php', - 'NullStatsdDataFactory' => __DIR__ . '/includes/libs/NullStatsdDataFactory.php', + 'NullStatsdDataFactory' => __DIR__ . '/includes/libs/stats/NullStatsdDataFactory.php', 'OOUIHTMLForm' => __DIR__ . '/includes/htmlform/OOUIHTMLForm.php', 'ORAField' => __DIR__ . '/includes/db/DatabaseOracle.php', 'ORAResult' => __DIR__ . '/includes/db/DatabaseOracle.php', diff --git a/includes/libs/BufferingStatsdDataFactory.php b/includes/libs/stats/BufferingStatsdDataFactory.php similarity index 100% rename from includes/libs/BufferingStatsdDataFactory.php rename to includes/libs/stats/BufferingStatsdDataFactory.php diff --git a/includes/libs/NullStatsdDataFactory.php b/includes/libs/stats/NullStatsdDataFactory.php similarity index 100% rename from includes/libs/NullStatsdDataFactory.php rename to includes/libs/stats/NullStatsdDataFactory.php -- 2.20.1