Skip to content

Commit 584e08e

Browse files
authored
Merge pull request #10 from eclipxe13/development
Fix build 2021-11-07
2 parents 5bf5d25 + ce7f4fe commit 584e08e

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
/.php-cs-fixer.dist.php export-ignore
1616
/.scrutinizer.yml export-ignore
1717
/phpcs.xml.dist export-ignore
18-
/phpstan.xml.dist export-ignore
18+
/phpstan.neon.dist export-ignore
1919
/phpunit.xml.dist export-ignore

.github/workflows/build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
uses: shivammathur/setup-php@v2
2525
with:
2626
php-version: '8.0'
27-
extensions: dom
2827
coverage: xdebug
2928
tools: composer:v2, phpcs, php-cs-fixer, phpstan, cs2pr
3029
env:
@@ -82,7 +81,6 @@ jobs:
8281
uses: shivammathur/setup-php@v2
8382
with:
8483
php-version: ${{ matrix.php-versions }}
85-
extensions: dom
8684
coverage: none
8785
tools: composer:v2, cs2pr
8886
env:

.phive/phars.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
3-
<phar name="php-cs-fixer" version="^3.1.0" installed="3.1.0" location="./tools/php-cs-fixer" copy="false"/>
4-
<phar name="phpcs" version="^3.6.0" installed="3.6.0" location="./tools/phpcs" copy="false"/>
5-
<phar name="phpcbf" version="^3.6.0" installed="3.6.0" location="./tools/phpcbf" copy="false"/>
6-
<phar name="phpstan" version="^0.12.97" installed="0.12.97" location="./tools/phpstan" copy="false"/>
3+
<phar name="php-cs-fixer" version="^3.1.0" installed="3.2.1" location="./tools/php-cs-fixer" copy="false"/>
4+
<phar name="phpcs" version="^3.6.0" installed="3.6.1" location="./tools/phpcs" copy="false"/>
5+
<phar name="phpcbf" version="^3.6.0" installed="3.6.1" location="./tools/phpcbf" copy="false"/>
6+
<phar name="phpstan" version="^1.1.2" installed="1.1.2" location="./tools/phpstan" copy="false"/>
77
</phive>

tests/Unit/DiscoverExtractorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function testThrowExceptionOnUnmatchedDocument(): void
4141
$extrator->extract($document);
4242
}
4343

44-
/** @return array<string, array> */
44+
/** @return array<string, array{DOMDocument, string}> */
4545
public function providerExpressionOnValidDocuments(): array
4646
{
4747
return [

0 commit comments

Comments
 (0)