Skip to content

Commit

Permalink
fixing phpunit config and running code sniffer
Browse files Browse the repository at this point in the history
  • Loading branch information
jturbide committed Feb 23, 2024
1 parent 7b21d39 commit 4148daa
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Empty file removed .env.dev
Empty file.
Empty file removed .env.prod
Empty file.
Empty file removed .env.stage
Empty file.
4 changes: 2 additions & 2 deletions phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
<exclude name="Squiz.WhiteSpace.SuperfluousWhitespace.EndLine"/>
</rule>

<file>src</file>
<file>app</file>

<exclude-pattern>src/Migrations/*</exclude-pattern>
<exclude-pattern>app/Migrations/*</exclude-pattern>
<exclude-pattern>private/*</exclude-pattern>
<exclude-pattern>storage/*</exclude-pattern>
<exclude-pattern>public/storage/*</exclude-pattern>
Expand Down
4 changes: 2 additions & 2 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
</php>
<source>
<include>
<directory suffix=".php">src</directory>
<directory suffix=".php">app</directory>
</include>
<exclude>
<directory suffix=".php">./tests</directory>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./src/Migrations</directory>
<directory suffix=".php">./app/Migrations</directory>
</exclude>
</source>
</phpunit>

0 comments on commit 4148daa

Please sign in to comment.