@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | * @param \ComponentManager\ComponentVersion[] $versions |
64 | 64 | * @param \ComponentManager\PackageRepository\PackageRepository $packageRepository |
65 | 65 | */ |
66 | - public function __construct($name, $versions, $packageRepository=null) { |
|
66 | + public function __construct($name, $versions, $packageRepository = null) { |
|
67 | 67 | $this->name = $name; |
68 | 68 | $this->versions = $versions; |
69 | 69 | |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | * @return string |
121 | 121 | */ |
122 | 122 | public function getPluginType() { |
123 | - list($type, ) = $this->getNameParts(); |
|
123 | + list($type,) = $this->getNameParts(); |
|
124 | 124 | |
125 | 125 | return $type; |
126 | 126 | } |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | * |
323 | 323 | * @return mixed The JSON-decoded representation of the response body. |
324 | 324 | */ |
325 | - protected function get($path, array $queryParams=[]) { |
|
325 | + protected function get($path, array $queryParams = []) { |
|
326 | 326 | $uri = $this->options->uri . $path; |
327 | 327 | |
328 | 328 | $client = new Client(); |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | * |
345 | 345 | * @return mixed The value attribute of the JSON-decoded response body. |
346 | 346 | */ |
347 | - protected function getAllPages($path, array $queryParams=[]) { |
|
347 | + protected function getAllPages($path, array $queryParams = []) { |
|
348 | 348 | $values = []; |
349 | 349 | |
350 | 350 | $responseBody = (object) [ |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | */ |
272 | 272 | protected function getMetadataCacheFilename() { |
273 | 273 | $urlHash = parse_url($this->options->uri, PHP_URL_HOST) . '-' |
274 | - . $this->options->project; |
|
274 | + . $this->options->project; |
|
275 | 275 | |
276 | 276 | return $this->platform->joinPaths([ |
277 | 277 | parent::getMetadataCacheDirectory(), |
@@ -370,7 +370,7 @@ discard block |
||
370 | 370 | */ |
371 | 371 | protected function getProjectRepositoryListUrl() { |
372 | 372 | return sprintf(static::PROJECT_REPOSITORY_LIST_PATH, |
373 | - $this->options->project); |
|
373 | + $this->options->project); |
|
374 | 374 | } |
375 | 375 | |
376 | 376 | /** |
@@ -382,7 +382,7 @@ discard block |
||
382 | 382 | */ |
383 | 383 | protected function getRepositoryBranchesPath($componentName) { |
384 | 384 | return sprintf(static::REPOSITORY_BRANCHES_PATH, $this->options->project, |
385 | - $componentName); |
|
385 | + $componentName); |
|
386 | 386 | } |
387 | 387 | |
388 | 388 | /** |
@@ -394,6 +394,6 @@ discard block |
||
394 | 394 | */ |
395 | 395 | protected function getRepositoryTagsPath($componentName) { |
396 | 396 | return sprintf(static::REPOSITORY_TAGS_PATH, $this->options->project, |
397 | - $componentName); |
|
397 | + $componentName); |
|
398 | 398 | } |
399 | 399 | } |
@@ -83,7 +83,7 @@ |
||
83 | 83 | * @param integer $maturity |
84 | 84 | * @param \ComponentManager\ComponentSource\ComponentSource[] $sources |
85 | 85 | */ |
86 | - public function __construct($version, $release, $maturity, $sources=null) { |
|
86 | + public function __construct($version, $release, $maturity, $sources = null) { |
|
87 | 87 | $this->version = $version; |
88 | 88 | $this->release = $release; |
89 | 89 | $this->maturity = $maturity; |
@@ -56,7 +56,7 @@ |
||
56 | 56 | * @return string The path to the module's root directory. |
57 | 57 | */ |
58 | 58 | public function obtainPackage($tempDirectory, |
59 | - ResolvedComponentVersion $resolvedComponentVersion, |
|
60 | - Filesystem $filesystem, |
|
61 | - LoggerInterface $logger); |
|
59 | + ResolvedComponentVersion $resolvedComponentVersion, |
|
60 | + Filesystem $filesystem, |
|
61 | + LoggerInterface $logger); |
|
62 | 62 | } |
@@ -39,9 +39,9 @@ |
||
39 | 39 | * @override \ComponentManager\PackageSource\PackageSource |
40 | 40 | */ |
41 | 41 | public function obtainPackage($tempDirectory, |
42 | - ResolvedComponentVersion $resolvedComponentVersion, |
|
43 | - Filesystem $filesystem, |
|
44 | - LoggerInterface $logger) { |
|
42 | + ResolvedComponentVersion $resolvedComponentVersion, |
|
43 | + Filesystem $filesystem, |
|
44 | + LoggerInterface $logger) { |
|
45 | 45 | $version = $resolvedComponentVersion->getVersion(); |
46 | 46 | $sources = $version->getSources(); |
47 | 47 |
@@ -45,8 +45,8 @@ |
||
45 | 45 | ->setHelp(static::HELP) |
46 | 46 | ->setDefinition(new InputDefinition([ |
47 | 47 | new InputArgument(Argument::ARGUMENT_ACTION, |
48 | - InputArgument::REQUIRED, |
|
49 | - Argument::ARGUMENT_ACTION_HELP), |
|
48 | + InputArgument::REQUIRED, |
|
49 | + Argument::ARGUMENT_ACTION_HELP), |
|
50 | 50 | new InputOption(Argument::ARGUMENT_MOODLE_DIR, null, |
51 | 51 | InputOption::VALUE_REQUIRED, |
52 | 52 | Argument::ARGUMENT_MOODLE_DIR_HELP), |
@@ -44,8 +44,8 @@ |
||
44 | 44 | ->setHelp(static::HELP) |
45 | 45 | ->setDefinition(new InputDefinition([ |
46 | 46 | new InputArgument(Argument::ARGUMENT_SCRIPT, |
47 | - InputArgument::REQUIRED, |
|
48 | - Argument::ARGUMENT_SCRIPT_HELP), |
|
47 | + InputArgument::REQUIRED, |
|
48 | + Argument::ARGUMENT_SCRIPT_HELP), |
|
49 | 49 | ])); |
50 | 50 | } |
51 | 51 |
@@ -66,8 +66,8 @@ |
||
66 | 66 | * @param string $packageSource |
67 | 67 | * @param \stdClass $extra |
68 | 68 | */ |
69 | - public function __construct($name, $version, $packageRepository=null, |
|
70 | - $packageSource=null, stdClass $extra=null) { |
|
69 | + public function __construct($name, $version, $packageRepository = null, |
|
70 | + $packageSource = null, stdClass $extra = null) { |
|
71 | 71 | $this->name = $name; |
72 | 72 | $this->version = $version; |
73 | 73 |
@@ -100,7 +100,7 @@ |
||
100 | 100 | * |
101 | 101 | * @return void |
102 | 102 | */ |
103 | - public function fetch($remote, $withTags=true) { |
|
103 | + public function fetch($remote, $withTags = true) { |
|
104 | 104 | $process = $this->getProcess(['fetch', $remote]); |
105 | 105 | $process->run(); |
106 | 106 |