From 01ef6b2391a59bb4c5d3c59e2ef9b99c7d335d17 Mon Sep 17 00:00:00 2001 From: Vincent Langlet Date: Sun, 9 Jul 2023 15:55:15 +0200 Subject: [PATCH] Fix Finder phpdoc --- Finder.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Finder.php b/Finder.php index 8cc564cd..0b569655 100644 --- a/Finder.php +++ b/Finder.php @@ -164,8 +164,8 @@ public function date($dates) * * You can use patterns (delimited with / sign), globs or simple strings. * - * $finder->name('*.php') - * $finder->name('/\.php$/') // same as above + * $finder->name('/\.php$/') + * $finder->name('*.php') // same as above, without dot files * $finder->name('test.php') * $finder->name(['test.py', 'test.php']) *