Skip to content

Commit edcca45

Browse files
committed
PHPCS will now follow symlinks under the list of checked directories (ref #1438)
1 parent 03a91ca commit edcca45

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

package.xml

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ http://pear.php.net/dtd/package-2.0.xsd">
3636
-- Previously, a file had to be in each of the include patterns to be processed by a sniff
3737
-- Now, a file has to only be in at least one of the patterns
3838
-- This change reflects the original intention of the feature
39+
- PHPCS will now follow symlinks under the list of checked directories
40+
-- This previously only worked if you specified the path to a symlink on the command line
3941
- Comment tokens that start with /** are now always tokenized as docblocks
4042
-- Thanks to Michał Bundyra for the patch
4143
- The PHP-supplied T_YIELD and T_YIELD_FROM token have been replicated for older PHP versions

src/Files/FileList.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function __construct(Config $config, Ruleset $ruleset)
7878

7979
$filterClass = $this->getFilterClass();
8080

81-
$di = new \RecursiveDirectoryIterator($path, \RecursiveDirectoryIterator::SKIP_DOTS);
81+
$di = new \RecursiveDirectoryIterator($path, \RecursiveDirectoryIterator::SKIP_DOTS | \FilesystemIterator::FOLLOW_SYMLINKS);
8282
$filter = new $filterClass($di, $path, $config, $ruleset);
8383
$iterator = new \RecursiveIteratorIterator($filter);
8484

src/Filters/Filter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public function accept()
114114
public function getChildren()
115115
{
116116
$children = new static(
117-
new \RecursiveDirectoryIterator($this->current(), \RecursiveDirectoryIterator::SKIP_DOTS),
117+
new \RecursiveDirectoryIterator($this->current(), \RecursiveDirectoryIterator::SKIP_DOTS | \FilesystemIterator::FOLLOW_SYMLINKS),
118118
$this->basedir,
119119
$this->config,
120120
$this->ruleset

0 commit comments

Comments
 (0)