This PR updates the query in the user repository to include a get() method, ensuring the query results are fetched in AttributeRepository.php #1288
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linting Tests | |
on: [push, pull_request] | |
jobs: | |
linting_tests: | |
runs-on: ${{ matrix.operating-systems }} | |
strategy: | |
matrix: | |
operating-systems: [ubuntu-latest] | |
php-versions: ['8.1'] | |
name: PHP ${{ matrix.php-versions }} test on ${{ matrix.operating-systems }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Running Pint Test | |
uses: aglipanci/[email protected] | |
with: | |
testMode: true | |
verboseMode: true |