12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- require_once 'phing/tasks/ext/phk/PhkPackageWebAccessPath.php';
- class PhkPackageWebAccess
- {
-
- private $paths = array();
-
- public function createPath()
- {
- return ($this->paths[] = new PhkPackageWebAccessPath());
- }
-
- public function getPaths()
- {
-
- $paths = array();
- foreach ($this->paths as $path) {
- $paths[] = $path->getPath();
- }
- return $paths;
- }
- }
|