TYPO3  7.6
AdapterInterface.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11 
12 namespace Symfony\Component\Finder\Adapter;
13 
18 {
24  public function setFollowLinks($followLinks);
25 
31  public function setMode($mode);
32 
38  public function setExclude(array $exclude);
39 
45  public function setDepths(array $depths);
46 
52  public function setNames(array $names);
53 
59  public function setNotNames(array $notNames);
60 
66  public function setContains(array $contains);
67 
73  public function setNotContains(array $notContains);
74 
80  public function setSizes(array $sizes);
81 
87  public function setDates(array $dates);
88 
94  public function setFilters(array $filters);
95 
101  public function setSort($sort);
102 
108  public function setPath(array $paths);
109 
115  public function setNotPath(array $notPaths);
116 
122  public function ignoreUnreadableDirs($ignore = true);
123 
129  public function searchInDirectory($dir);
130 
136  public function isSupported();
137 
143  public function getName();
144 }