Skip to content

Commit 781d94e

Browse files
authored
Apply fixes from StyleCI (#80)
1 parent 7916109 commit 781d94e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SourceRepositoryTypes/GithubRepositoryTypes/GithubBranchType.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function fetch(string $version = '')
5151

5252
$release = $this->selectRelease($releaseCollection, $version);
5353

54-
$storageFolder = $this->storagePath.$release->commit->author->date . '-' . now()->timestamp;
54+
$storageFolder = $this->storagePath.$release->commit->author->date.'-'.now()->timestamp;
5555
$storageFilename = $storageFolder.'.zip';
5656

5757
if (! $this->isSourceAlreadyFetched($release->commit->author->date)) {
@@ -66,7 +66,7 @@ public function selectRelease(Collection $collection, string $version)
6666
$release = $collection->first();
6767

6868
if (! empty($version)) {
69-
if($collection->contains('commit.author.date', $version)) {
69+
if ($collection->contains('commit.author.date', $version)) {
7070
$release = $collection->where('commit.author.date', $version)->first();
7171
} else {
7272
Log::info('No release for version "'.$version.'" found. Selecting latest.');

0 commit comments

Comments
 (0)