Changeset View
Changeset View
Standalone View
Standalone View
src/filesystem/FileFinder.php
| Show All 9 Lines | |||||
| * ->withSuffix('php') | * ->withSuffix('php') | ||||
| * ->find(); | * ->find(); | ||||
| * | * | ||||
| * @task create Creating a File Query | * @task create Creating a File Query | ||||
| * @task config Configuring File Queries | * @task config Configuring File Queries | ||||
| * @task exec Executing the File Query | * @task exec Executing the File Query | ||||
| * @task internal Internal | * @task internal Internal | ||||
| */ | */ | ||||
| final class FileFinder { | final class FileFinder extends Phobject { | ||||
| private $root; | private $root; | ||||
| private $exclude = array(); | private $exclude = array(); | ||||
| private $paths = array(); | private $paths = array(); | ||||
| private $name = array(); | private $name = array(); | ||||
| private $suffix = array(); | private $suffix = array(); | ||||
| private $type; | private $type; | ||||
| private $generateChecksums = false; | private $generateChecksums = false; | ||||
| ▲ Show 20 Lines • Show All 261 Lines • Show Last 20 Lines | |||||