Skip to content

Commit

Permalink
Files/TestDoubles: make property private
Browse files Browse the repository at this point in the history
As the sniff class is now `final` (since PR 319), there is no need for any `protected` properties, so let's make this `private`.
  • Loading branch information
jrfnl committed Nov 19, 2023
1 parent 7077f11 commit ec46172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Yoast/Sniffs/Files/TestDoublesSniff.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ final class TestDoublesSniff implements Sniff {
*
* @var string[]
*/
protected $target_paths;
private $target_paths;

/**
* Returns an array of tokens this test wants to listen for.
Expand Down

0 comments on commit ec46172

Please sign in to comment.