Skip to content

Commit

Permalink
Merge branch '1.x' into provider
Browse files Browse the repository at this point in the history
  • Loading branch information
koriym authored Jun 7, 2024
2 parents 1ab0531 + 560f8b1 commit 9aa81e0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .github/workflows/update-copyright-years-in-license-file.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Update copyright year in license file

on:
workflow_dispatch:
schedule:
- cron: "0 3 1 1 *"

jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: FantasticFiasco/action-update-license-year@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion src/Annotation/Query.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ final class Query
public $type = 'row_list';

/** @SuppressWarnings(PHPMd.BooleanArgumentFlag) */
public function __construct(string $id, string $type = 'row', bool $templated = false)
public function __construct(string $id, string $type = 'row_list', bool $templated = false)
{
$this->id = $id;
$this->templated = $templated;
Expand Down

0 comments on commit 9aa81e0

Please sign in to comment.