Contao\CoreBundle\Config\ResourceFinder::find PHP Метод

find() публичный Метод

public find ( )
    public function find()
    {
        return Finder::create()->in($this->paths);
    }

Usage Example

 /**
  * Tests the find() method.
  */
 public function testFind()
 {
     $finder = new ResourceFinder([]);
     $this->assertInstanceOf('Symfony\\Component\\Finder\\Finder', $finder->find());
 }