Completed
Branch master (d32485)
by Luke
04:09
created
lib/ComponentManager/PackageRepository/StashPackageRepository.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -328,7 +328,7 @@
 block discarded – undo
328 328
         $client = new Client();
329 329
         $response = $client->get($uri, [
330 330
             'headers' => [
331
-                'Authorization' => "Basic {$this->options->authentication}",
331
+                'Authorization' => "basic {$this->options->authentication}",
332 332
             ],
333 333
             'query' => $queryParams,
334 334
         ]);
Please login to merge, or discard this patch.
lib/ComponentManager/Command/MoodleCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     const HELP = <<<HELP
35 35
 Queries properties of the Moodle installation in the present working directory.
36
-HELP;
36
+help;
37 37
 
38 38
     /**
39 39
      * @override \Symfony\Component\Console\Command\Command
Please login to merge, or discard this patch.
lib/ComponentManager/Command/PackageCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      */
29 29
     const HELP = <<<HELP
30 30
 Packages a Moodle site from a project file.
31
-HELP;
31
+help;
32 32
 
33 33
     /**
34 34
      * @override \ComponentManager\Command\AbstractCommand
Please login to merge, or discard this patch.
lib/ComponentManager/Command/RunScriptCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      */
33 33
     const HELP = <<<HELP
34 34
 Executes the specified script for a component.
35
-HELP;
35
+help;
36 36
 
37 37
     /**
38 38
      * @override \Symfony\Component\Console\Command\Command
Please login to merge, or discard this patch.
lib/ComponentManager/Command/InstallCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     const HELP = <<<HELP
39 39
 Installs, into the Moodle installation in the present working directory, all of the components listed in its componentmgr.json file.
40
-HELP;
40
+help;
41 41
 
42 42
     /**
43 43
      * @override \Symfony\Component\Console\Command\Command
Please login to merge, or discard this patch.
lib/ComponentManager/Command/RefreshCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     const HELP = <<<HELP
35 35
 Refreshes cached package repository meta for all caching package repositories.
36
-HELP;
36
+help;
37 37
 
38 38
     /**
39 39
      * @override \Symfony\Component\Console\Command\Command
Please login to merge, or discard this patch.