Passed
Push — scrutinizer ( 30af4f...f358b5 )
by Luke
02:35
created
lib/ComponentManager/Command/PackageCommand.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      */
40 40
     const HELP = <<<HELP
41 41
 Packages a Moodle site from a project file.
42
-HELP;
42
+help;
43 43
 
44 44
     /**
45 45
      * Moodle.org plugin and update API.
Please login to merge, or discard this patch.
lib/ComponentManager/PackageRepository/StashPackageRepository.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -325,7 +325,7 @@
 block discarded – undo
325 325
         $uri = $this->httpClient->createUri($uri)
326 326
             ->withQuery(http_build_query($queryParams));
327 327
         $message = $this->httpClient->createRequest(Request::METHOD_GET, $uri)
328
-            ->withHeader('Authorization', "Basic {$this->options->authentication}");
328
+            ->withHeader('Authorization', "basic {$this->options->authentication}");
329 329
         $response = $this->httpClient->sendRequest($message);
330 330
 
331 331
         return json_decode($response->getBody());
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
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     const HELP = <<<HELP
39 39
 Installs, into the Moodle installation in the present working directory, all of
40 40
 the components listed in its componentmgr.json file.
41
-HELP;
41
+help;
42 42
 
43 43
     /**
44 44
      * Initialiser.
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
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     const HELP = <<<HELP
32 32
 Executes the specified script for a component.
33
-HELP;
33
+help;
34 34
 
35 35
     /**
36 36
      * @inheritdoc Command
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
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      */
33 33
     const HELP = <<<HELP
34 34
 Queries properties of the Moodle installation in the present working directory.
35
-HELP;
35
+help;
36 36
 
37 37
     /**
38 38
      * @inheritdoc 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
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      */
33 33
     const HELP = <<<HELP
34 34
 Refreshes cached package repository meta for all caching package repositories.
35
-HELP;
35
+help;
36 36
 
37 37
     /**
38 38
      * @inheritdoc Command
Please login to merge, or discard this patch.