Skip to content

Commit

Permalink
update phploc (#630)
Browse files Browse the repository at this point in the history
* update phploc

* format imports

* do not fail fast
  • Loading branch information
cmgmyr authored Mar 17, 2023
1 parent 1118d79 commit 56bf41b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/frameworks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
symfony:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
fail-fast: false
matrix:
os: [ubuntu-latest]
version: ['^5.4', '@stable', '@dev'] # Test current LTS, current release, and future release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/standalone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
php: ['7.4', '8.0', '8.1']
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: true
fail-fast: false
matrix:
php: ['7.4', '8.0', '8.1']
dependency-version: [prefer-lowest, prefer-stable]
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
"ext-json": "*",
"ext-mbstring": "*",
"ext-tokenizer": "*",
"cmgmyr/phploc": "^8.0",
"composer/semver": "^3.3",
"friendsofphp/php-cs-fixer": "^3.0.0",
"justinrainbow/json-schema": "^5.1",
"league/container": "^3.2|^4.2",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phploc/phploc": "^5.0|^6.0|^7.0",
"psr/container": "^1.0|^2.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"sebastian/diff": "^4.0",
Expand Down
4 changes: 2 additions & 2 deletions src/Domain/Analyser.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

namespace NunoMaduro\PhpInsights\Domain;

use Cmgmyr\PHPLOC\Analyser as BaseAnalyser;
use ReflectionMethod;
use SebastianBergmann\PHPLOC\Analyser as BaseAnalyser;

/**
* Code originally taken from {SebastianBergmann\PHPLOC\Analyser}.
* Code originally taken from {Cmgmyr\PHPLOC\Analyser}.
*
* @method string|false getNamespaceName(array $tokens, int $i)
* @method bool isClassDeclaration(array $tokens, int $i)
Expand Down

0 comments on commit 56bf41b

Please sign in to comment.