Skip to content

Commit

Permalink
chore: update actions/checkout & fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
datamweb committed Sep 5, 2023
1 parent dd85627 commit aedc1f8
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 45 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpcpd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpcsfixer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up PHP
uses: shivammathur/setup-php@v2
Expand Down
78 changes: 39 additions & 39 deletions tests/CI4Twig/UrlHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,43 +59,43 @@ public function testAnchor()
$this->assertSame($expected, $actual);
}

// public function test_current_url()
// {
// }
//
// public function test_uri_string()
// {
// }
//
// public function test_index_page()
// {
// }
//
// public function test_anchor_popup()
// {
// }
//
// public function test_mailto()
// {
// }
//
// public function test_safe_mailto()
// {
// }
//
// public function test_auto_link()
// {
// }
//
// public function test_prep_url()
// {
// }
//
// public function test_url_title()
// {
// }
//
// public function test_redirect()
// {
// }
// public function test_current_url()
// {
// }
//
// public function test_uri_string()
// {
// }
//
// public function test_index_page()
// {
// }
//
// public function test_anchor_popup()
// {
// }
//
// public function test_mailto()
// {
// }
//
// public function test_safe_mailto()
// {
// }
//
// public function test_auto_link()
// {
// }
//
// public function test_prep_url()
// {
// }
//
// public function test_url_title()
// {
// }
//
// public function test_redirect()
// {
// }
}

0 comments on commit aedc1f8

Please sign in to comment.