Skip to content

Commit 25b68e6

Browse files
committed
fixing spacing
1 parent 00e4619 commit 25b68e6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/PatternLab/Fetch.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ public function fetchPackage($package = "") {
3434
if (empty($package)) {
3535
Console::writeError("please provide a path for the package before trying to fetch it...");
3636
}
37-
37+
3838
// run composer
3939
$composerPath = Config::getOption("coreDir").DIRECTORY_SEPARATOR."bin/composer.phar";
4040
passthru("php ".$composerPath." require ".$package);
41-
42-
}
4341

42+
}
43+
4444
/**
4545
* Fetch a package from GitHub
4646
* @param {String} the command option to provide the rule for
@@ -49,12 +49,12 @@ public function fetchPackage($package = "") {
4949
* @return {String} the modified file contents
5050
*/
5151
public function fetchStarterKit($starterkit = "") {
52-
52+
5353
// double-checks options was properly set
5454
if (empty($starterkit)) {
5555
Console::writeError("please provide a path for the starterkit before trying to fetch it...");
5656
}
57-
57+
5858
// set default attributes
5959
$sourceDir = Config::getOption("sourceDir");
6060
$tempDir = sys_get_temp_dir();

0 commit comments

Comments
 (0)