Skip to content

Commit

Permalink
Bump shivammathur/setup-php from 2.25.4 to 2.25.5 (#110)
Browse files Browse the repository at this point in the history
* Bump shivammathur/setup-php from 2.25.4 to 2.25.5

Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.25.4 to 2.25.5.
- [Release notes](https://github.com/shivammathur/setup-php/releases)
- [Commits](shivammathur/setup-php@2.25.4...2.25.5)

---
updated-dependencies:
- dependency-name: shivammathur/setup-php
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update ecs.php

* Rector Rectify

* Rector Rectify

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Zing <zingimmick@outlook.com>
Co-authored-by: zingimmick <zingimmick@users.noreply.github.com>
  • Loading branch information
3 people authored Aug 4, 2023
1 parent 4b8b1be commit 5455d8b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@2.25.4
uses: shivammathur/setup-php@2.25.5
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, xdebug
Expand Down
4 changes: 2 additions & 2 deletions tests/MockAdapterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ public function testWriteStream(): void
/**
* @return \Iterator<string[]>
*/
public static function provideVisibilities(): \Iterator
public static function provideWriteStreamWithVisibilityCases(): \Iterator
{
yield [Visibility::PUBLIC];

Expand Down Expand Up @@ -549,7 +549,7 @@ private function mockGetVisibility(string $path, string $visibility): void
}

/**
* @dataProvider provideVisibilities
* @dataProvider provideWriteStreamWithVisibilityCases
*/
public function testWriteStreamWithVisibility(string $visibility): void
{
Expand Down
4 changes: 2 additions & 2 deletions tests/ValidAdapterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,15 +132,15 @@ public function testWriteStream(): void
/**
* @return \Iterator<string[]>
*/
public static function provideVisibilities(): \Iterator
public static function provideWriteStreamWithVisibilityCases(): \Iterator
{
yield [Visibility::PUBLIC];

yield [Visibility::PRIVATE];
}

/**
* @dataProvider provideVisibilities
* @dataProvider provideWriteStreamWithVisibilityCases
*/
public function testWriteStreamWithVisibility(string $visibility): void
{
Expand Down

0 comments on commit 5455d8b

Please sign in to comment.