Skip to content

Commit

Permalink
add additional test for duplicate normal items for beter coverage to …
Browse files Browse the repository at this point in the history
…prove that still works.
  • Loading branch information
matt-h committed Sep 21, 2023
1 parent 46a2832 commit f389331
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/fixtures/facade-aliases/complex.after.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ public function noop()
Another\Arr::wrap('arr');
}

public function duplicates()
{
Arr::wrap('arr');
Arr::wrap('arr');
}

public function duplicateGlobals()
{
App::make('app');
Expand Down
6 changes: 6 additions & 0 deletions tests/fixtures/facade-aliases/complex.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ public function noop()
Another\Arr::wrap('arr');
}

public function duplicates()
{
Arr::wrap('arr');
Arr::wrap('arr');
}

public function duplicateGlobals()
{
\App::make('app');
Expand Down

0 comments on commit f389331

Please sign in to comment.