add postinst doc

fix php 7.3 compatibility issues of typed properties
This commit is contained in:
2020-10-03 20:28:19 +00:00
parent f1c49ea049
commit 2bfe3c28b2
11 changed files with 112 additions and 14 deletions

View File

@ -2,8 +2,8 @@
require_once 'src/Database.php';
abstract class RequestBase {
protected mysqli $conn;
private array $actions = array();
protected $conn;
private $actions = array();
/**
* adds a new action handler to the current api file

View File

@ -7,7 +7,7 @@ require_once 'RequestBase.php';
* backend for all interactions with videoloads and receiving of video infos
*/
class Video extends RequestBase {
private string $videopath;
private $videopath;
public function __construct() {
$settings = new SSettings();