Remove Atom Editor

This commit is contained in:
Steffen Lange 2024-02-21 17:50:58 +01:00
parent cd672a9d35
commit 59ecbac716

View file

@ -1,14 +0,0 @@
<?php
class AtomEditor extends PatchBase {
function __construct() {
parent::__construct('GitHub Inc.', 'Atom Editor', 'https://atom.io/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/atom/atom/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>