123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- declare(strict_types=1);
- namespace OC\Updater;
- use OCP\AppFramework\Db\Entity;
- class Changes extends Entity {
-
- protected $version = '';
-
- protected $etag = '';
-
- protected $lastCheck = 0;
-
- protected $data = '';
- public function __construct() {
- $this->addType('version', 'string');
- $this->addType('etag', 'string');
- $this->addType('lastCheck', 'int');
- $this->addType('data', 'string');
- }
- }
|