I want to find specific texts in some files in a directory. I tried using Symfony Finder Component, but couldn't get the result. Here is my code below.
$finder = new Finder();
$finder->in('./sample')->files()->contains('This is test');
The files are in sample directory. There are pdf, txt files in sample directory. The above didn't work for me. How to get this to work. Any help will be appreciated.