Changeset View
Changeset View
Standalone View
Standalone View
src/filesystem/FileList.php
| Show All 12 Lines | |||||
| * } | * } | ||||
| * | * | ||||
| * This sort of construction will allow the user to type "src" in order | * This sort of construction will allow the user to type "src" in order | ||||
| * to indicate 'all relevant files underneath "src/"'. | * to indicate 'all relevant files underneath "src/"'. | ||||
| * | * | ||||
| * @task create Creating a File List | * @task create Creating a File List | ||||
| * @task test Testing File Lists | * @task test Testing File Lists | ||||
| */ | */ | ||||
| final class FileList { | final class FileList extends Phobject { | ||||
| private $files = array(); | private $files = array(); | ||||
| private $dirs = array(); | private $dirs = array(); | ||||
| /** | /** | ||||
| * Build a new FileList from an array of paths, e.g. from $argv. | * Build a new FileList from an array of paths, e.g. from $argv. | ||||
| * | * | ||||
| * @param list List of relative or absolute file paths. | * @param list List of relative or absolute file paths. | ||||
| ▲ Show 20 Lines • Show All 63 Lines • Show Last 20 Lines | |||||