/var/www/cobraambalaj/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem
NameSizeModeActions
Directory.php6580644editdlrm
DirectoryCollection.php13370644editdlrm
DirectoryCollectionIterator.php13260644editdlrm
File.php6530644editdlrm
FileCollection.php12480644editdlrm
FileCollectionIterator.php12700644editdlrm
Edit: /var/www/cobraambalaj/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/Directory.php (658B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\TextUI\XmlConfiguration; /** * @internal This class is not covered by the backward compatibility promise for PHPUnit * @psalm-immutable */ final class Directory { /** * @var string */ private $path; public function __construct(string $path) { $this->path = $path; } public function path(): string { return $this->path; } }