This repository has been archived on 2023-10-21. You can view files and clone it, but cannot push or open issues or pull requests.
patchouli/src/Patchouli.php
2020-12-29 02:40:16 +00:00

20 lines
466 B
PHP

<?php
namespace Patchouli;
use Patchouli\Dummy\DummyPackage;
class Patchouli extends SingleInstance {
public function _getPackages(): array {
return [new DummyPackage];
}
public function _getPackagesWithTags(array $tags): array {
return [new DummyPackage];
}
public function _getPackage(string $packageName): IPackage {
//throw new PackageNotFoundException;
return new DummyPackage;
}
}