Skip to content

Commit bedf121

Browse files
committed
style: run php-cs-fixer
1 parent 63ed9ad commit bedf121

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

app/Config/App.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,7 @@ class App extends BaseConfig
437437
* Defaults to `Lax` as recommended in this link:
438438
*
439439
* @see https://portswigger.net/web-security/csrf/samesite-cookies
440+
*
440441
* @deprecated `Config\Cookie` $samesite property is used.
441442
*
442443
* @var string

app/Libraries/Blog.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ public function __construct()
3434
* If $category is present, will locate within a
3535
* subfolder of that name.
3636
*
37-
* @throws BlogException
38-
*
3937
* @return Post[]
38+
*
39+
* @throws BlogException
4040
*/
4141
public function getRecentPosts(int $limit = 5, int $offset = 0, ?string $category = null)
4242
{

app/Libraries/GitHub.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public function __construct(GitHubConfig $config, Client $client)
100100
$this->client = $client;
101101
}
102102

103-
//---------------------------------------------------------------------
103+
// ---------------------------------------------------------------------
104104

105105
/**
106106
* Interfaces with the client to execute
@@ -127,7 +127,7 @@ protected function api(array $methods, array $segments): array
127127
return $caller->{$final}(...$segments);
128128
}
129129

130-
//---------------------------------------------------------------------
130+
// ---------------------------------------------------------------------
131131

132132
/**
133133
* Retrieves releases and tags for configured repositories
@@ -244,7 +244,7 @@ public function getCommit(array $segments): array
244244
return $this->api(['repo', 'commits', 'show'], $segments);
245245
}
246246

247-
//---------------------------------------------------------------------
247+
// ---------------------------------------------------------------------
248248

249249
/**
250250
* Retrieves repo details for each configured repository as a Repo.
@@ -264,7 +264,7 @@ public function getRepos(): array
264264
return $this->storage['repos'];
265265
}
266266

267-
//---------------------------------------------------------------------
267+
// ---------------------------------------------------------------------
268268

269269
/**
270270
* Retrieves contributor information for a repository.

0 commit comments

Comments
 (0)