diff options
author | Alex Pott <alex.a.pott@googlemail.com> | 2022-01-10 12:07:03 +0000 |
---|---|---|
committer | Alex Pott <alex.a.pott@googlemail.com> | 2022-01-10 12:07:03 +0000 |
commit | 2f1c716625c009fff75b033fd96241f85c2f12bd (patch) | |
tree | 8bf2dab75d4747e3b4a17daeab2d61801c054b51 /core/scripts/generate-proxy-class.php | |
parent | a0b2090aac560da42174ca5b39fcc58839032e37 (diff) | |
download | drupal-2f1c716625c009fff75b033fd96241f85c2f12bd.tar.gz drupal-2f1c716625c009fff75b033fd96241f85c2f12bd.zip |
Issue #3106216 by Spokje, longwave, alexpott, apaderno, Hardik_Patel_12, daffie: Remove unused variables from core
Diffstat (limited to 'core/scripts/generate-proxy-class.php')
-rw-r--r-- | core/scripts/generate-proxy-class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/scripts/generate-proxy-class.php b/core/scripts/generate-proxy-class.php index d277c34d5ee3..2664739be423 100644 --- a/core/scripts/generate-proxy-class.php +++ b/core/scripts/generate-proxy-class.php @@ -20,7 +20,7 @@ if (PHP_SAPI !== 'cli') { $autoloader = require __DIR__ . '/../../autoload.php'; $request = Request::createFromGlobals(); Settings::initialize(dirname(__DIR__, 2), DrupalKernel::findSitePath($request), $autoloader); -$kernel = DrupalKernel::createFromRequest($request, $autoloader, 'prod')->boot(); +DrupalKernel::createFromRequest($request, $autoloader, 'prod')->boot(); // Run the database dump command. $application = new GenerateProxyClassApplication(new ProxyBuilder()); |