@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | * |
137 | 137 | * @return \ComponentManager\Moodle |
138 | 138 | */ |
139 | - protected function getMoodle($moodleDirectory=null) { |
|
139 | + protected function getMoodle($moodleDirectory = null) { |
|
140 | 140 | if ($this->moodle === null) { |
141 | 141 | $moodleDirectory = ($moodleDirectory === null) |
142 | 142 | ? $this->platform->getWorkingDirectory() : $moodleDirectory; |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | * |
156 | 156 | * @return \ComponentManager\Project\Project |
157 | 157 | */ |
158 | - protected function getProject($projectFilename=null, $projectLockFilename=null) { |
|
158 | + protected function getProject($projectFilename = null, $projectLockFilename = null) { |
|
159 | 159 | $workingDirectory = $this->platform->getWorkingDirectory(); |
160 | 160 | |
161 | 161 | if ($this->project === null) { |
@@ -35,7 +35,7 @@ |
||
35 | 35 | */ |
36 | 36 | const HELP = <<<HELP |
37 | 37 | Installs, into the Moodle installation in the present working directory, all of the components listed in its componentmgr.json file. |
38 | -HELP; |
|
38 | +help; |
|
39 | 39 | |
40 | 40 | /** |
41 | 41 | * Initialiser. |
@@ -31,6 +31,7 @@ |
||
31 | 31 | * @param HttpClient $httpClient |
32 | 32 | * @param \ComponentManager\Platform\Platform $platform |
33 | 33 | * @param \stdClass $options |
34 | + * @return void |
|
34 | 35 | */ |
35 | 36 | public function __construct(Filesystem $filesystem, HttpClient $httpClient, |
36 | 37 | Platform $platform, stdClass $options); |
@@ -14,8 +14,8 @@ |
||
14 | 14 | use ComponentManager\ComponentVersion; |
15 | 15 | use ComponentManager\HttpClient; |
16 | 16 | use ComponentManager\Platform\Platform; |
17 | -use stdClass; |
|
18 | 17 | use Symfony\Component\Filesystem\Filesystem; |
18 | +use stdClass; |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * Package repository interface. |
@@ -79,7 +79,7 @@ |
||
79 | 79 | * @return RequestInterface |
80 | 80 | */ |
81 | 81 | public function createRequest($method, $uri, $headers=[], $body=null, |
82 | - $protocolVersion='1.1') { |
|
82 | + $protocolVersion='1.1') { |
|
83 | 83 | return $this->messageFactory->createRequest( |
84 | 84 | $method, $uri, $headers, $body, $protocolVersion); |
85 | 85 | } |
@@ -78,8 +78,8 @@ |
||
78 | 78 | * |
79 | 79 | * @return RequestInterface |
80 | 80 | */ |
81 | - public function createRequest($method, $uri, $headers=[], $body=null, |
|
82 | - $protocolVersion='1.1') { |
|
81 | + public function createRequest($method, $uri, $headers = [], $body = null, |
|
82 | + $protocolVersion = '1.1') { |
|
83 | 83 | return $this->messageFactory->createRequest( |
84 | 84 | $method, $uri, $headers, $body, $protocolVersion); |
85 | 85 | } |