www.gusucode.com > Flarum PHP论坛 中文版 v0.1 beta7源码程序 > FlarumChina-master/vendor/symfony/finder/Adapter/AdapterInterface.php

    <?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Finder\Adapter;

/**
 * @author Jean-François Simon <contact@jfsimon.fr>
 */
interface AdapterInterface
{
    /**
     * @param bool $followLinks
     *
     * @return $this
     */
    public function setFollowLinks($followLinks);

    /**
     * @param int $mode
     *
     * @return $this
     */
    public function setMode($mode);

    /**
     * @return $this
     */
    public function setExclude(array $exclude);

    /**
     * @return $this
     */
    public function setDepths(array $depths);

    /**
     * @return $this
     */
    public function setNames(array $names);

    /**
     * @return $this
     */
    public function setNotNames(array $notNames);

    /**
     * @return $this
     */
    public function setContains(array $contains);

    /**
     * @return $this
     */
    public function setNotContains(array $notContains);

    /**
     * @return $this
     */
    public function setSizes(array $sizes);

    /**
     * @return $this
     */
    public function setDates(array $dates);

    /**
     * @return $this
     */
    public function setFilters(array $filters);

    /**
     * @param \Closure|int $sort
     *
     * @return $this
     */
    public function setSort($sort);

    /**
     * @return $this
     */
    public function setPath(array $paths);

    /**
     * @return $this
     */
    public function setNotPath(array $notPaths);

    /**
     * @param bool $ignore
     *
     * @return $this
     */
    public function ignoreUnreadableDirs($ignore = true);

    /**
     * @param string $dir
     *
     * @return \Iterator Result iterator
     */
    public function searchInDirectory($dir);

    /**
     * Tests adapter support for current platform.
     *
     * @return bool
     */
    public function isSupported();

    /**
     * Returns adapter name.
     *
     * @return string
     */
    public function getName();
}