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/Version.php
2020-12-29 02:40:16 +00:00

19 lines
354 B
PHP

<?php
namespace Patchouli;
use FWIF\FWIFSerializable;
class Version implements FWIFSerializable {
public function match(Version $other): bool {
return true;
}
public function __toString(): string {
return '1.0.0';
}
public function fwifSerialize(): string {
return (string)$this;
}
}